From 94b524d6dc83341ad00c77de1cc5f4ba1a91844c Mon Sep 17 00:00:00 2001 From: Scott Sweeny Date: Tue, 27 Sep 2011 23:54:42 -0400 Subject: [PATCH 001/134] plugins/MobileProfile/MobileProfilePlugin.php: add 'maemo' to recognized devices --- plugins/MobileProfile/MobileProfilePlugin.php | 1 + 1 file changed, 1 insertion(+) 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', From c70c7db1c50b749de906ce56f18bacb586243488 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 28 Sep 2011 15:48:20 -0400 Subject: [PATCH 002/134] Remove unique key on file_thumbnail.url We're getting "DB error: already exists" on thumbnails coming from embed.ly. We don't need this to be unique, so let's avoid that. --- classes/File_thumbnail.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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'), - ), + ) ); } From 82770601e21dbd02e0b3868a0dc51303d9a11e0b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 28 Sep 2011 16:11:12 -0400 Subject: [PATCH 003/134] Remove config.php.sample This file is really, really out-of-date. We've got admin panels, and we've got a long document (CONFIGURE) on how to do this. Using config.php.sample as a starting point is a bad idea. --- config.php.sample | 309 ---------------------------------------------- 1 file changed, 309 deletions(-) delete mode 100644 config.php.sample 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/'; From 69765a055074d00b723f5ebf0c13a4e2837a93f9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Sep 2011 18:32:43 -0700 Subject: [PATCH 004/134] Fix for caching with compound keys: add Managed_DataObject::_allCacheKeys() to override the one in Memcached_DataObject. Memcached_DataObject doesn't quite fully understand unique indexes, and can't properly build cache keys for compound unique or primary keys. Managed_DataObject has more information in its schema data, so we can build a proper list. --- classes/Managed_DataObject.php | 37 ++++++++++++++++++++++++++++++++++ classes/User_im_prefs.php | 22 -------------------- 2 files changed, 37 insertions(+), 22 deletions(-) diff --git a/classes/Managed_DataObject.php b/classes/Managed_DataObject.php index 106065fc46..ba2883450c 100644 --- a/classes/Managed_DataObject.php +++ b/classes/Managed_DataObject.php @@ -168,4 +168,41 @@ 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'])) { + foreach ($table['unique keys'] as $idx => $fields) { + $val = array(); + foreach ($fields as $name) { + $val[] = self::valueString($this->$name); + } + $keys = implode(',', $fields); + $vals = implode(',', $val); + $ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals); + } + } + + if (!empty($table['primary key'])) { + $fields = $table['primary key']; + $val = array(); + foreach ($fields as $name) { + $val[] = self::valueString($this->$name); + } + $keys = implode(',', $fields); + $vals = implode(',', $val); + $ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals); + } + return $ckeys; + } } \ No newline at end of file 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; - } - } From 2cbfc8cb8ec071c3ecbc5c0d82278884926ac4a5 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 29 Sep 2011 07:58:52 +0000 Subject: [PATCH 005/134] Fix navigation for SubMirrorPlugin --- plugins/SubMirror/SubMirrorPlugin.php | 7 ++++--- plugins/SubMirror/actions/mirrorsettings.php | 11 +++++++++-- 2 files changed, 13 insertions(+), 5 deletions(-) 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() From 32845a1051356b56053a768ca3e9df68d7d5523a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 29 Sep 2011 12:29:12 -0400 Subject: [PATCH 006/134] Make lists work in single-user mode Added routes to the router for list pages in single-user mode. For each of the actions in those routes, use the global single-user nickname rather than a nickname URL argument to determine the tagger ID. In nav, and for Ajax, provide the right nicknames. --- actions/editpeopletag.php | 6 ++- actions/peopletagged.php | 7 ++- actions/peopletagsbyuser.php | 7 ++- actions/peopletagsforuser.php | 7 ++- actions/peopletagsubscribers.php | 7 ++- actions/peopletagsubscriptions.php | 7 ++- actions/showprofiletag.php | 6 ++- lib/action.php | 6 +-- lib/peopletaggroupnav.php | 8 ++- lib/router.php | 81 ++++++++++++++++++++++++------ 10 files changed, 116 insertions(+), 26 deletions(-) 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/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/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/lib/action.php b/lib/action.php index 18ffb5e920..d85ee25fb6 100644 --- a/lib/action.php +++ b/lib/action.php @@ -328,10 +328,8 @@ class Action extends HTMLOutputter // lawsuit } // This route isn't available in single-user mode. // Not sure why, but it causes errors here. - if (!common_config('singleuser', 'enabled')) { - $this->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/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/router.php b/lib/router.php index c9b12ac8e7..09121c561c 100644 --- a/lib/router.php +++ b/lib/router.php @@ -817,6 +817,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 +896,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 +971,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)); From 699a90f11ce5f066a5210610db22ef0a7756a546 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 29 Sep 2011 15:12:30 -0400 Subject: [PATCH 007/134] Show Event attendees in mini-list --- classes/Profile.php | 4 ++++ plugins/Event/event.css | 21 ++++++++++++++++- plugins/Event/eventlistitem.php | 41 ++++++++++++++++++++++++++------- 3 files changed, 57 insertions(+), 9 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index f983225fd5..7ccfa72166 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1454,4 +1454,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/plugins/Event/event.css b/plugins/Event/event.css index 7fbb67d732..3cad53c590 100644 --- a/plugins/Event/event.css +++ b/plugins/Event/event.css @@ -13,4 +13,23 @@ overflow-x: hidden; /* add padding to account for vertical scrollbar */ padding-right: 20px; -} \ No newline at end of file +} + +li.rsvp-list ul.entities { + float:left; + width:100%; + display:inline; +} +li.rsvp-list .entities li { + list-style-type: none; + float: left; + margin-right: 3px; + margin-bottom: 8px; + display: inline; +} +li.rsvp-list .entities li .photo { + margin: 0; +} +li.rsvp-list .entities li .fn { + display: none; +} diff --git a/plugins/Event/eventlistitem.php b/plugins/Event/eventlistitem.php index fb27704461..2f0710f01f 100644 --- a/plugins/Event/eventlistitem.php +++ b/plugins/Event/eventlistitem.php @@ -152,14 +152,39 @@ 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; + } + common_debug("IDS = " . implode(',', $ids)); + $profiles = Profile::pivotGet('id', $ids); + common_debug("Profiles = " . print_r($profiles, true)); + $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(); From d51a93ddb9759faeffd7bdd11b28d20541968481 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 29 Sep 2011 16:00:10 -0400 Subject: [PATCH 008/134] Quick style for event attendee avatar lists. --- plugins/Event/event.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/plugins/Event/event.css b/plugins/Event/event.css index 3cad53c590..e5af5cf515 100644 --- a/plugins/Event/event.css +++ b/plugins/Event/event.css @@ -15,20 +15,24 @@ padding-right: 20px; } +.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 { - float:left; - width:100%; display:inline; } li.rsvp-list .entities li { list-style-type: none; - float: left; margin-right: 3px; margin-bottom: 8px; display: inline; } li.rsvp-list .entities li .photo { - margin: 0; + margin: 0 !important; + float: none !important; } li.rsvp-list .entities li .fn { display: none; From d438a55434213058ffe4a648844b1182391a3699 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 29 Sep 2011 07:58:52 +0000 Subject: [PATCH 009/134] Fix navigation for SubMirrorPlugin --- plugins/SubMirror/SubMirrorPlugin.php | 7 ++++--- plugins/SubMirror/actions/mirrorsettings.php | 11 +++++++++-- 2 files changed, 13 insertions(+), 5 deletions(-) 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() From 51b7af41d47cce5d66affcf79ee091b97d9b6b2c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 29 Sep 2011 20:26:01 +0000 Subject: [PATCH 010/134] Show homepage on profile --- lib/profileblock.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/profileblock.php b/lib/profileblock.php index 432df0da5a..4e5539496a 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -122,6 +122,8 @@ abstract class ProfileBlock extends Widget function showHomepage() { + $homepage = $this->homepage(); + if (!empty($homepage)) { $this->out->element('a', 'profile_block_homepage', $homepage); } From 1d15037d6a3e41c424d6ba905530956adbc374a2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 29 Sep 2011 15:21:52 -0700 Subject: [PATCH 011/134] Further fixes to Managed_DataObject::_allCacheKeys(): now uses self::multicacheKey() to generate the (possibly compound) keys, which makes it match the order of the keys used when calling pkeyGet(). This should resolve the issues darkip was reporting with user_im_prefs entries returning null immediately after insertion (seen with memcached off, so it was happening even with the built-in in-process cache in the Cache base class). What was happening was that the initial pkeyGet() would end up saving a negative cache entry under the form with the fields sorted in the key, as via multicacheKey(): 'statusnet:blaguette:user_im_prefs:screenname,transport:brionv,sms' => 'N;' then we'd do an insert() on the new entry, saving cache entries for the non-sorted key names returned by _allCacheKeys(): 'statusnet:blaguette:user_im_prefs:transport,screenname:sms,brionv' => 'O...' 'statusnet:blaguette:user_im_prefs:user_id,transport:1234,sms' => 'O...' but the next query via pkeyGet() still saw the negative lookup cache from before, and came back with null. Now, _allCacheKeys() sorts the fields in the keys by using the same key-builder function, and queries pick up the same thing you just inserted. :) --- classes/Managed_DataObject.php | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/classes/Managed_DataObject.php b/classes/Managed_DataObject.php index ba2883450c..1d55537e20 100644 --- a/classes/Managed_DataObject.php +++ b/classes/Managed_DataObject.php @@ -182,14 +182,13 @@ abstract class Managed_DataObject extends Memcached_DataObject $ckeys = array(); if (!empty($table['unique keys'])) { - foreach ($table['unique keys'] as $idx => $fields) { + $keyNames = $table['unique keys']; + foreach ($keyNames as $idx => $fields) { $val = array(); foreach ($fields as $name) { - $val[] = self::valueString($this->$name); + $val[$name] = self::valueString($this->$name); } - $keys = implode(',', $fields); - $vals = implode(',', $val); - $ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals); + $ckeys[] = self::multicacheKey($this->tableName(), $val); } } @@ -197,11 +196,9 @@ abstract class Managed_DataObject extends Memcached_DataObject $fields = $table['primary key']; $val = array(); foreach ($fields as $name) { - $val[] = self::valueString($this->$name); + $val[$name] = self::valueString($this->$name); } - $keys = implode(',', $fields); - $vals = implode(',', $val); - $ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals); + $ckeys[] = self::multicacheKey($this->tableName(), $val); } return $ckeys; } From ba4bda9beb8b51eb53c47ac32e435179cb9eecde Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 30 Sep 2011 00:56:24 +0000 Subject: [PATCH 012/134] Fix display of group admin avatars --- classes/Profile.php | 68 +++++++++++++++++++++++++++++---------------- 1 file changed, 44 insertions(+), 24 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 7ccfa72166..938c5357c2 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'); From fb406a81e2c2ab6c7a09a8ff009a692844f46ac5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 29 Sep 2011 22:59:18 -0400 Subject: [PATCH 013/134] allow / at end of group, user page --- lib/router.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/router.php b/lib/router.php index 09121c561c..8798db89e0 100644 --- a/lib/router.php +++ b/lib/router.php @@ -334,6 +334,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')); @@ -1068,6 +1072,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 From 5df3c8bc4bca2810b07989c1b187970be81f86da Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 29 Sep 2011 23:41:51 -0400 Subject: [PATCH 014/134] Show the list of repeaters in threaded notice list --- lib/threadednoticelist.php | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) 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); } From 3aad58c37fa54fe7952c1d2d190f701cb4cac269 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 09:40:15 -0400 Subject: [PATCH 015/134] Only show some profiles in events --- lib/profileminilist.php | 1 + plugins/Event/eventlistitem.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) 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/plugins/Event/eventlistitem.php b/plugins/Event/eventlistitem.php index 2f0710f01f..b563e228f9 100644 --- a/plugins/Event/eventlistitem.php +++ b/plugins/Event/eventlistitem.php @@ -174,9 +174,8 @@ class EventListItem extends NoticeListItemAdapter foreach ($responses as $response) { $ids[] = $response->profile_id; } - common_debug("IDS = " . implode(',', $ids)); + $ids = array_slice($ids, 0, ProfileMiniList::MAX_PROFILES + 1); $profiles = Profile::pivotGet('id', $ids); - common_debug("Profiles = " . print_r($profiles, true)); $profile = new ArrayWrapper(array_values($profiles)); $minilist = new ProfileMiniList($profile, $out); $minilist->show(); From 9ba736c03238788942a83aa3539c2741fe019abf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 09:45:17 -0400 Subject: [PATCH 016/134] Add a dummy 'top' action to take you to the main page of the site --- actions/top.php | 86 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/router.php | 1 + 2 files changed, 87 insertions(+) create mode 100644 actions/top.php 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/lib/router.php b/lib/router.php index 8798db89e0..25c436ac92 100644 --- a/lib/router.php +++ b/lib/router.php @@ -156,6 +156,7 @@ class Router 'backupaccount', 'deleteaccount', 'restoreaccount', + 'top', ); foreach ($main as $a) { From 0e439117a75698629c5066d0241ab41dc07b5ee1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 10:09:41 -0400 Subject: [PATCH 017/134] replace 'public' in documentation with 'top' --- doc-src/contact | 2 +- doc-src/help | 2 +- doc-src/tos | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc-src/contact b/doc-src/contact index 75c3aa8364..a713d7c5b9 100644 --- a/doc-src/contact +++ b/doc-src/contact @@ -10,7 +10,7 @@ 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 +[public timeline](%%action.top%%) for answers; they'll usually start with "@" plus your user name. Bugs diff --git a/doc-src/help b/doc-src/help index 92d5d05afa..0e39082ad0 100644 --- a/doc-src/help +++ b/doc-src/help @@ -7,7 +7,7 @@ character) notices which are broadcast to their friends and fans using the Web, RSS, or instant messages. 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). 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. From 2e8d92dbe9291c4c45a6156f4a3731516e5a9358 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 10:10:15 -0400 Subject: [PATCH 018/134] use the 'top' action for bookmarklet popup --- plugins/Bookmark/bookmarkpopup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) { From 4e5af7513c166b055b4ccad916318d44a60ac527 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 10:15:40 -0400 Subject: [PATCH 019/134] 50px more for bookmarklet popup --- plugins/Bookmark/bookmarklet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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%% From 9c2e454901237437f8a8f116d70f6cc880dde24e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 10:19:54 -0400 Subject: [PATCH 020/134] It's the End of the World as We Know It (And I Feel Fine) We had planned to change over to using Beastie Boys song titles for the 1.x series of StatusNet releases, but with the end of REM last week, the team thought naming one last StatusNet version after an REM song was a nice tribute, and a good way to announce what we think this release means. --- lib/framework.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/framework.php b/lib/framework.php index 642617564c..a11abdff4e 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -20,12 +20,12 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } define('STATUSNET_BASE_VERSION', '1.0.0'); -define('STATUSNET_LIFECYCLE', 'rc1'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' +define('STATUSNET_LIFECYCLE', ''); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility -define('STATUSNET_CODENAME', 'The Sounds of Science'); +define('STATUSNET_CODENAME', 'It\'s the End of the World as We Know It'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); From d07780b47824515266e3d6a9135f0c200d2ef458 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 10:46:51 -0400 Subject: [PATCH 021/134] Output native PEAR DB errors to the log file --- lib/framework.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/framework.php b/lib/framework.php index a11abdff4e..d68693868d 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -151,10 +151,19 @@ 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()); + throw new PEAR_Exception($msg, $err, $err->getCode()); + } else { + throw new PEAR_Exception($msg, $err); } - throw new PEAR_Exception($err->getMessage()); } PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'PEAR_ErrorToPEAR_Exception'); From cd3bc8f4ef068636a8f169b357cf012f6e99f291 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 11:38:06 -0400 Subject: [PATCH 022/134] correct groups from Profile::getGroups() --- classes/Profile.php | 4 ++++ lib/profileaction.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/classes/Profile.php b/classes/Profile.php index 938c5357c2..3b3e43025b 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -350,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); } 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) { From cd6e0a920f4264036c8a28998ac9fb60e4609b9d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 11:38:54 -0400 Subject: [PATCH 023/134] slightly better usergroups pagination --- actions/usergroups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } From 636455ad8239abbd571b72100190be7a29aa9769 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 11:48:00 -0400 Subject: [PATCH 024/134] Fix conflict between URL parameter and POST parameter with groups Group edit page is at /group/:nickname/edit. There's also a form parameter named 'nickname'. The two were conflicting. I changed the form parameter to 'newnickname' and it works. I'm not sure how this ever worked before, though. --- actions/editgroup.php | 4 ++-- actions/newgroup.php | 2 +- lib/groupeditform.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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/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/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'); From f2a98e2329324c83ed1e492cb908a5849b87591f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 12:23:10 -0400 Subject: [PATCH 025/134] show group aliases on group profile block --- lib/groupprofileblock.php | 19 +++++++++++++++++++ theme/base/css/display.css | 6 ++++++ 2 files changed, 25 insertions(+) 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/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; From e3c010a87016642141c4a47c274ecdac18f7e0d3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 13:03:42 -0400 Subject: [PATCH 026/134] try to check whether file exists over and over and over --- classes/File.php | 26 +++++++++++++++++--------- plugins/Bookmark/bookmarkforurl.php | 8 +++++++- 2 files changed, 24 insertions(+), 10 deletions(-) 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/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); From 1b94625f2fb2e0a7c8bdd4efe0d0178f1cd552e2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 13:22:15 -0400 Subject: [PATCH 027/134] add an href for homepage link --- lib/profileblock.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/profileblock.php b/lib/profileblock.php index 4e5539496a..1162b78422 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -125,7 +125,10 @@ abstract class ProfileBlock extends Widget $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); } } From fd62f6b9340997084a60f0ae5685c6afc1395eba Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 30 Sep 2011 18:13:25 +0000 Subject: [PATCH 028/134] Don't throw exception if bookmark has no attachments; log error and render as normal notice instead. --- plugins/Bookmark/bookmarklistitem.php | 33 ++++++++++++++++++--------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index d099c75ecd..a0d98d591a 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 @@ -68,22 +68,33 @@ class BookmarkListItem extends NoticeListItemAdapter $atts = $notice->attachments(); - 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)); + if (empty($atts)) { + + // Something went wrong! + + common_log( + LOG_ERR, + sprintf( + _m('Bookmark %1$s (notice %2$d) has no attachments.'), + $nb->id, + $notice->id + ) + ); + + // try to show the notice as plain text + + parent::showContent(); + return; + } $att = $atts[0]; $out->elementStart('h3'); $out->element('a', - array('href' => $att->url, - 'class' => 'bookmark-title'), - $nb->title); + array('href' => $att->url, + 'class' => 'bookmark-title'), + $nb->title); $out->elementEnd('h3'); // Replies look like "for:" tags From e7ef9e2117c02d7a75c12d4c931431e545f0bb15 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 30 Sep 2011 18:20:22 +0000 Subject: [PATCH 029/134] Remove gettext wrapper from log msg --- plugins/Bookmark/bookmarklistitem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index a0d98d591a..381864c21c 100644 --- a/plugins/Bookmark/bookmarklistitem.php +++ b/plugins/Bookmark/bookmarklistitem.php @@ -75,7 +75,7 @@ class BookmarkListItem extends NoticeListItemAdapter common_log( LOG_ERR, sprintf( - _m('Bookmark %1$s (notice %2$d) has no attachments.'), + 'Bookmark %1$s (notice %2$d) has no attachments.', $nb->id, $notice->id ) From 5f2dcffb608b2b121c5cf79ac93f9ee9571d810c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 30 Sep 2011 11:21:24 -0700 Subject: [PATCH 030/134] Disable Cache class's in-process cache on CLI runs; unsafe for long-running daemons. Should help with situations like IM daemons coming up with false negatives on user settings lookups. --- lib/cache.php | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/lib/cache.php b/lib/cache.php index eb4eb66656..8f5987ce27 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 __constructor() { + // 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; From f4ca0f7c5befd396f9aa3291b34460a67f93edf9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:23:05 -0400 Subject: [PATCH 031/134] remove dup lists doc --- doc-src/lists | 69 --------------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 doc-src/lists 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. - From df72adcd2d05515e63c0d977a0323d7252bbf747 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:23:30 -0400 Subject: [PATCH 032/134] remove bad old badge code --- doc-src/badge | 69 -------------------------------------------- lib/secondarynav.php | 3 -- 2 files changed, 72 deletions(-) delete mode 100644 doc-src/badge 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/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'); From 89ecda2c52360d2527abf398a27d4087e2bd6179 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:24:03 -0400 Subject: [PATCH 033/134] Home stub nav for admin, settings, and docs --- lib/homestubnav.php | 61 +++++++++++++++++++++++++++++++++++++++++++++ lib/settingsnav.php | 21 +++------------- 2 files changed, 64 insertions(+), 18 deletions(-) create mode 100644 lib/homestubnav.php 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/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. From 82badb19c79a2789008a8c3eca3bf15a13e44fd9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:24:27 -0400 Subject: [PATCH 034/134] Move docs menu to site primary menu --- actions/doc.php | 68 +++++++++++++++++++++++++++++++++ doc-src/help | 21 ---------- doc-src/tags | 4 -- plugins/OpenID/OpenIDPlugin.php | 15 +++----- 4 files changed, 74 insertions(+), 34 deletions(-) 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/doc-src/help b/doc-src/help index 0e39082ad0..d85a328900 100644 --- a/doc-src/help +++ b/doc-src/help @@ -16,24 +16,3 @@ 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 diff --git a/doc-src/tags b/doc-src/tags index 3e9065a100..82885a9c8d 100644 --- a/doc-src/tags +++ b/doc-src/tags @@ -52,10 +52,6 @@ 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 ------------------ 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; } From d250d0161a755635194a4932e99a93dbc291b0b0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:30:21 -0400 Subject: [PATCH 035/134] more modern main help page --- doc-src/help | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/doc-src/help b/doc-src/help index d85a328900..d304486c35 100644 --- a/doc-src/help +++ b/doc-src/help @@ -2,17 +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. If you'd like to try it out, first [register](%%action.register%%) a new account. 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. +subscribed to their notifications. + +You can also broadcast other types of data, like bookmarks, event +invitations, polls, and questions. From a64f49fb175e05a210fd425435596ebeaacc073b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:30:48 -0400 Subject: [PATCH 036/134] remove OpenMicroblogging help page --- doc-src/openmublog | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 doc-src/openmublog 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). From 2892f70d18065e1478c729f2de96218c9500e2df Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:31:27 -0400 Subject: [PATCH 037/134] bookmarklet is now part of Bookmark plugin --- doc-src/bookmarklet | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 doc-src/bookmarklet 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%% From f1eb96fc9517425080d9cf499183473ca0a587c0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:33:08 -0400 Subject: [PATCH 038/134] bring about page up-to-date --- doc-src/about | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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. From 03791eca892a50c7bbb3cc922050dd46c4ed7390 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 30 Sep 2011 11:50:39 -0700 Subject: [PATCH 039/134] bad brion! s/__constructor/__construct/ --- lib/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cache.php b/lib/cache.php index 8f5987ce27..59110f74d8 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -53,7 +53,7 @@ class Cache const COMPRESSED = 1; - private function __constructor() { + private function __construct() { // Potentially long-running daemons or maintenance scripts // should not use an in-process cache as it becomes out of // date. From 1094e7c2c661cbd2648d9ec034ddc9d01e2860cb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:52:51 -0400 Subject: [PATCH 040/134] Update openid docs --- plugins/OpenID/doc-src/openid | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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/*. From c3d08132dcb59738da605dbc0b51df758ba2692f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:53:01 -0400 Subject: [PATCH 041/134] update tags docs --- doc-src/tags | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/doc-src/tags b/doc-src/tags index 82885a9c8d..8f42b5b752 100644 --- a/doc-src/tags +++ b/doc-src/tags @@ -51,15 +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. - -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. - From 8343b8fae1a90c7b3fee6cbdd72ccbc2de7355ec Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:53:10 -0400 Subject: [PATCH 042/134] update base help --- doc-src/help | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc-src/help b/doc-src/help index d304486c35..4bb9cd33a2 100644 --- a/doc-src/help +++ b/doc-src/help @@ -6,6 +6,9 @@ (%%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.top%%), enter your message into the textbox at the top of the page, and click "Send". It will go out on the @@ -14,6 +17,3 @@ 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. - -You can also broadcast other types of data, like bookmarks, event -invitations, polls, and questions. From 75c383f4978d7640df919a16853ece6d203f58b2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:53:16 -0400 Subject: [PATCH 043/134] update groups help --- doc-src/groups | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) 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. From 6148c7a1519e1d18e8eb72612bb19d0f080367c4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:53:23 -0400 Subject: [PATCH 044/134] update faq --- doc-src/faq | 52 ++++++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 24 deletions(-) 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. From ae72eac4f05bf00ae023b73cd5aca3d29c09a6b9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 14:53:30 -0400 Subject: [PATCH 045/134] update contact --- doc-src/contact | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/doc-src/contact b/doc-src/contact index a713d7c5b9..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.top%%) 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. From 5c852b8769a186932f968add4567aaf0bba44b00 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Sep 2011 15:05:42 -0400 Subject: [PATCH 046/134] update README for 1.0.0 golden --- README | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index 07537a7c1d..aacc9670e6 100644 --- a/README +++ b/README @@ -2,8 +2,8 @@ README ------ -StatusNet 1.0.0rc1 -20 September 2011 +StatusNet 1.0.0 +30 September 2011 This is the README file for StatusNet, the Open Source social networking platform. It includes general information about the @@ -197,6 +197,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 ======= From c137d69aee2ab6f6c846c128aca675b47be93d37 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 30 Sep 2011 19:51:23 +0000 Subject: [PATCH 047/134] Switch from oohembed to noembed for default oembed provider --- lib/default.php | 5 ++--- lib/oembedhelper.php | 4 ++-- plugins/LinkPreview/linkpreview.js | 2 +- plugins/LinkPreview/linkpreview.min.js | 2 +- plugins/LinkPreview/oembedproxyaction.php | 2 +- tests/oEmbedTest.php | 25 +++++++++++++---------- 6 files changed, 21 insertions(+), 19 deletions(-) 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/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/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/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/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); } } From c85abebc36e25c87e0292aeb41e4f1eadaa5e2b9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 3 Oct 2011 09:13:54 -0400 Subject: [PATCH 048/134] Remove missing twittersettings page from subscriptions helper --- actions/subscriptions.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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. From 6145df667059ca50b56107ba4128fa7ff892f8f5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 3 Oct 2011 09:15:53 -0400 Subject: [PATCH 049/134] trim initial '/' from paths --- index.php | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 850208c9d1..49fd187100 100644 --- a/index.php +++ b/index.php @@ -49,21 +49,33 @@ $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)); } else { - return $path; + $p = $path; } } else { - return null; + $p = null; } + + // Trim all initial '/' + + if (!empty($p)) { + while ($p[0] == '/') { + $p = substr($p, 1); + } + } + + return $p; } /** From c9d635b67555e74f9d54ca5c1895a2fd186de653 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 3 Oct 2011 09:26:42 -0400 Subject: [PATCH 050/134] Fix hand-made trim in getPath() with ltrim (duh) --- index.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 49fd187100..1566399fa2 100644 --- a/index.php +++ b/index.php @@ -59,7 +59,7 @@ function getPath($req) $path = $_SERVER['PATH_INFO']; $script = $_SERVER['SCRIPT_NAME']; if (substr($path, 0, mb_strlen($script)) == $script) { - $p = substr($path, mb_strlen($script)); + $p = substr($path, mb_strlen($script) + 1); } else { $p = $path; } @@ -69,11 +69,7 @@ function getPath($req) // Trim all initial '/' - if (!empty($p)) { - while ($p[0] == '/') { - $p = substr($p, 1); - } - } + $p = ltrim($p, '/'); return $p; } From 71853f40a02c1b80b91cd9b28667f1f0a36bd5ba Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 3 Oct 2011 11:03:55 -0400 Subject: [PATCH 051/134] 1.0.1rc1 --- INSTALL | 6 +++--- README | 16 +++++++++------- UPGRADE | 4 ++-- lib/framework.php | 6 +++--- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/INSTALL b/INSTALL index f40594d260..3fad87d098 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.1rc1.tar.gz - ...which will make a statusnet-1.0.0rc1 subdirectory in your current + ...which will make a statusnet-1.0.1rc1 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.1rc1 /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 aacc9670e6..4b84d8f178 100644 --- a/README +++ b/README @@ -2,8 +2,8 @@ README ------ -StatusNet 1.0.0 -30 September 2011 +StatusNet 1.0.1rc1 +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 =============== diff --git a/UPGRADE b/UPGRADE index cf2375dffe..59cde1d7a4 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.1rc1 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.1rc1 directory and AFTER YOU MAKE A BACKUP run the upgrade.php script like this: php ./scripts/upgrade.php diff --git a/lib/framework.php b/lib/framework.php index d68693868d..f4308ac6bd 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -19,13 +19,13 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -define('STATUSNET_BASE_VERSION', '1.0.0'); -define('STATUSNET_LIFECYCLE', ''); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' +define('STATUSNET_BASE_VERSION', '1.0.1'); +define('STATUSNET_LIFECYCLE', 'rc1'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility -define('STATUSNET_CODENAME', 'It\'s the End of the World as We Know It'); +define('STATUSNET_CODENAME', 'Get It Together'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); From 9c02713e9aaabcbe85ecc2855abd70475746e04d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 3 Oct 2011 12:46:04 -0400 Subject: [PATCH 052/134] 1.0.1rc1 -> 1.0.1 --- INSTALL | 6 +++--- README | 2 +- UPGRADE | 4 ++-- lib/framework.php | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/INSTALL b/INSTALL index 3fad87d098..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.1rc1.tar.gz + tar zxf statusnet-1.0.1.tar.gz - ...which will make a statusnet-1.0.1rc1 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.1rc1 /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 4b84d8f178..d08f9ff1ab 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ README ------ -StatusNet 1.0.1rc1 +StatusNet 1.0.1 3 October 2011 This is the README file for StatusNet, the Open Source social diff --git a/UPGRADE b/UPGRADE index 59cde1d7a4..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.1rc1 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.1rc1 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/lib/framework.php b/lib/framework.php index f4308ac6bd..689073440e 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -20,7 +20,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } define('STATUSNET_BASE_VERSION', '1.0.1'); -define('STATUSNET_LIFECYCLE', 'rc1'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' +define('STATUSNET_LIFECYCLE', ''); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility From d37bc805c68808393a49c0dc510fe02c312e4a25 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 5 Oct 2011 12:05:05 -0400 Subject: [PATCH 053/134] first pass, some files ready --- plugins/OfflineBackup/OfflineBackupPlugin.php | 89 +++++++++++++++++++ plugins/OfflineBackup/offlinebackup.php | 87 ++++++++++++++++++ .../offlinebackupqueuehandler.php | 61 +++++++++++++ 3 files changed, 237 insertions(+) create mode 100644 plugins/OfflineBackup/OfflineBackupPlugin.php create mode 100644 plugins/OfflineBackup/offlinebackup.php create mode 100644 plugins/OfflineBackup/offlinebackupqueuehandler.php diff --git a/plugins/OfflineBackup/OfflineBackupPlugin.php b/plugins/OfflineBackup/OfflineBackupPlugin.php new file mode 100644 index 0000000000..e08e2721b1 --- /dev/null +++ b/plugins/OfflineBackup/OfflineBackupPlugin.php @@ -0,0 +1,89 @@ +. + * + * @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; + } +} 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..ae83e6741d --- /dev/null +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -0,0 +1,61 @@ +. + * + * @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; + + return true; + } +} From d92acda02a19da6501310a419d742e09d493e9bd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 6 Oct 2011 17:31:50 -0400 Subject: [PATCH 054/134] start doing some writing --- .../offlinebackupqueuehandler.php | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index ae83e6741d..81b29c43bc 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -56,6 +56,31 @@ class OfflineBackupQueueHandler extends QueueHandler { $userId = $object; + $user = User::staticGet($userId); + + $fileName = $this->makeBackupFile($user); + + $this->notifyBackupFile($fileName); + return true; } + + function makeBackupFile($user) + { + $fileName = File::filename($user->getProfile(), "backup", "application/atom+xml"); + $fullPath = File::path($fileName); + + // XXX: this is pretty lose-y; try another way + + $actstr = new UserActivityStream($user, true, UserActivityStream::OUTPUT_RAW); + + file_put_contents($fullPath, $actstr->getString()); + + return $fileName; + } + + function notifyBackupFile($fileName) + { + $fileUrl = + } } From 737e23544a9b6b20a336daa49756c7b8b4c6d850 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 09:36:52 -0400 Subject: [PATCH 055/134] send backup files --- .../OfflineBackup/offlinebackupqueuehandler.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index 81b29c43bc..383a43d759 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -60,7 +60,7 @@ class OfflineBackupQueueHandler extends QueueHandler $fileName = $this->makeBackupFile($user); - $this->notifyBackupFile($fileName); + $this->notifyBackupFile($user, $fileName); return true; } @@ -79,8 +79,19 @@ class OfflineBackupQueueHandler extends QueueHandler return $fileName; } - function notifyBackupFile($fileName) + function notifyBackupFile($user, $fileName) { - $fileUrl = + $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); } } From 0d35673d5ab2093c21cc5fe0e5327868e18d0a1b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 10:01:44 -0400 Subject: [PATCH 056/134] add version for OfflineBackup --- plugins/OfflineBackup/OfflineBackupPlugin.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plugins/OfflineBackup/OfflineBackupPlugin.php b/plugins/OfflineBackup/OfflineBackupPlugin.php index e08e2721b1..a7bede2875 100644 --- a/plugins/OfflineBackup/OfflineBackupPlugin.php +++ b/plugins/OfflineBackup/OfflineBackupPlugin.php @@ -86,4 +86,16 @@ class OfflineBackupPlugin extends Plugin $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; + } } From 7f4b23b8edd9acbfdd2c73cf8ab014a42599983f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 10:30:22 -0400 Subject: [PATCH 057/134] Use string output --- plugins/OfflineBackup/offlinebackupqueuehandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index 383a43d759..6039fd1ea8 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -72,7 +72,7 @@ class OfflineBackupQueueHandler extends QueueHandler // XXX: this is pretty lose-y; try another way - $actstr = new UserActivityStream($user, true, UserActivityStream::OUTPUT_RAW); + $actstr = new UserActivityStream($user, true); file_put_contents($fullPath, $actstr->getString()); From 43128e5da5312bea546fca93e9651889bd6ebfed Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 13:52:38 -0400 Subject: [PATCH 058/134] Move GROUPS_PER_PAGE to lib/framework --- lib/framework.php | 1 + lib/grouplist.php | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/framework.php b/lib/framework.php index 689073440e..4458313eb9 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -34,6 +34,7 @@ define('AVATAR_MINI_SIZE', 24); define('NOTICES_PER_PAGE', 20); define('PROFILES_PER_PAGE', 20); define('MESSAGES_PER_PAGE', 20); +define('GROUPS_PER_PAGE', 20); define('FOREIGN_NOTICE_SEND', 1); define('FOREIGN_NOTICE_RECV', 2); 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 * From 7075214589cec334a417b517ef1de888228826c3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 13:56:47 -0400 Subject: [PATCH 059/134] dump out activities to directory --- .../offlinebackupqueuehandler.php | 150 +++++++++++++++++- 1 file changed, 145 insertions(+), 5 deletions(-) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index 6039fd1ea8..a8c4c5428a 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -58,8 +58,12 @@ class OfflineBackupQueueHandler extends QueueHandler $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; @@ -67,14 +71,22 @@ class OfflineBackupQueueHandler extends QueueHandler function makeBackupFile($user) { - $fileName = File::filename($user->getProfile(), "backup", "application/atom+xml"); - $fullPath = File::path($fileName); - // XXX: this is pretty lose-y; try another way - $actstr = new UserActivityStream($user, true); + $tmpdir = sys_get_temp_dir() . '/offline-backup/' . $user->nickname . '/' . common_date_iso8601(common_sql_now()); - file_put_contents($fullPath, $actstr->getString()); + 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); return $fileName; } @@ -94,4 +106,132 @@ class OfflineBackupQueueHandler extends QueueHandler 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()) { + $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; + } + + $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()) { + $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; + } + + $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()) { + 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; + } + + $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()) { + 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; + } + + $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()) { + $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; + } + + $page++; + + common_debug("Got " . $mem->N . " results on search for groups."); + + } while ($mem->N > GROUPS_PER_PAGE); + } } From 70827f337922c2fc03f39b475c65978c7e6152be Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Oct 2011 14:37:09 -0400 Subject: [PATCH 060/134] write all activity files to the feed file --- .../offlinebackupqueuehandler.php | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index a8c4c5428a..054c4d403c 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -88,6 +88,10 @@ class OfflineBackupQueueHandler extends QueueHandler $fileName = File::filename($user->getProfile(), "backup", "application/atom+xml"); $fullPath = File::path($fileName); + $this->makeActivityFeed($user, $tmpdir, $fullPath); + + $this->delTree($tmpdir); + return $fileName; } @@ -234,4 +238,67 @@ class OfflineBackupQueueHandler extends QueueHandler } 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); + } + } } From 436068dc0d7dbe13355efe5dbcd06cad7b6b94bc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 10 Oct 2011 15:05:43 +0200 Subject: [PATCH 061/134] Use getBestName() instead of nickname per FIXMEs. Update translator documentation. --- actions/showgroup.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/actions/showgroup.php b/actions/showgroup.php index 2449ea1db7..88a6293377 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); + $this->group->getBestName()); } $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($m)); From 7602f605d545e31a7e9c5a0015e6f966219407d0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 10 Oct 2011 15:06:39 +0200 Subject: [PATCH 062/134] Remove unneeded trailing space. --- actions/showgroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/showgroup.php b/actions/showgroup.php index 88a6293377..eba3191f6f 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -226,7 +226,7 @@ class ShowgroupAction extends GroupAction // 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. '), + 'short messages about their life and interests.'), $this->group->getBestName()); } $this->elementStart('div', array('id' => 'anon_notice')); From 6120af3901cfe51ae648cea1e365238cea298d39 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 10 Oct 2011 15:58:00 +0200 Subject: [PATCH 063/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 360 ++++--- locale/be-tarask/LC_MESSAGES/statusnet.po | 363 ++++--- locale/bg/LC_MESSAGES/statusnet.po | 251 ++--- locale/br/LC_MESSAGES/statusnet.po | 255 ++--- locale/ca/LC_MESSAGES/statusnet.po | 277 +++--- locale/cs/LC_MESSAGES/statusnet.po | 278 +++--- locale/de/LC_MESSAGES/statusnet.po | 281 +++--- locale/en_GB/LC_MESSAGES/statusnet.po | 263 ++--- locale/eo/LC_MESSAGES/statusnet.po | 271 +++--- locale/es/LC_MESSAGES/statusnet.po | 285 +++--- locale/eu/LC_MESSAGES/statusnet.po | 440 +++++---- locale/fa/LC_MESSAGES/statusnet.po | 269 ++--- locale/fi/LC_MESSAGES/statusnet.po | 270 +++--- locale/fr/LC_MESSAGES/statusnet.po | 342 ++++--- locale/fur/LC_MESSAGES/statusnet.po | 388 ++++---- locale/gl/LC_MESSAGES/statusnet.po | 556 +++++------ locale/he/LC_MESSAGES/statusnet.po | 219 +++-- locale/hsb/LC_MESSAGES/statusnet.po | 271 +++--- locale/hu/LC_MESSAGES/statusnet.po | 250 ++--- locale/ia/LC_MESSAGES/statusnet.po | 288 +++--- locale/it/LC_MESSAGES/statusnet.po | 266 ++--- locale/ja/LC_MESSAGES/statusnet.po | 285 +++--- locale/ka/LC_MESSAGES/statusnet.po | 268 ++--- locale/ko/LC_MESSAGES/statusnet.po | 240 +++-- locale/mk/LC_MESSAGES/statusnet.po | 277 +++--- locale/ml/LC_MESSAGES/statusnet.po | 265 ++--- locale/nb/LC_MESSAGES/statusnet.po | 273 +++--- locale/nl/LC_MESSAGES/statusnet.po | 277 +++--- locale/pl/LC_MESSAGES/statusnet.po | 318 +++--- locale/pt/LC_MESSAGES/statusnet.po | 274 +++--- locale/pt_BR/LC_MESSAGES/statusnet.po | 274 +++--- locale/ru/LC_MESSAGES/statusnet.po | 266 ++--- locale/statusnet.pot | 522 +++++----- locale/sv/LC_MESSAGES/statusnet.po | 276 +++--- locale/te/LC_MESSAGES/statusnet.po | 256 +++-- locale/tl/LC_MESSAGES/statusnet.po | 260 ++--- locale/uk/LC_MESSAGES/statusnet.po | 266 ++--- locale/zh_CN/LC_MESSAGES/statusnet.po | 248 +++-- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 6 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 6 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 6 +- .../locale/de/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 6 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 29 + .../locale/he/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 6 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 6 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 6 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 6 +- plugins/Activity/locale/Activity.pot | 2 +- .../locale/ar/LC_MESSAGES/Activity.po | 117 +++ .../locale/ca/LC_MESSAGES/Activity.po | 12 +- .../locale/de/LC_MESSAGES/Activity.po | 13 +- .../locale/eu/LC_MESSAGES/Activity.po | 124 +++ .../locale/ia/LC_MESSAGES/Activity.po | 12 +- .../locale/mk/LC_MESSAGES/Activity.po | 12 +- .../locale/nl/LC_MESSAGES/Activity.po | 12 +- .../locale/ru/LC_MESSAGES/Activity.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 13 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 6 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 6 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 6 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 6 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 26 + .../locale/he/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 6 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 6 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 32 + .../locale/he/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 31 + .../locale/sv/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 6 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 30 + .../locale/he/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 6 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 28 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 6 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 6 +- .../locale/de/LC_MESSAGES/Blacklist.po | 6 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 6 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 6 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 6 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 6 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 6 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 6 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 6 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 95 ++ plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 6 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 6 +- plugins/Bookmark/locale/Bookmark.pot | 9 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 20 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 45 +- .../locale/de/LC_MESSAGES/Bookmark.po | 15 +- .../locale/eu/LC_MESSAGES/Bookmark.po | 266 +++++ .../locale/fr/LC_MESSAGES/Bookmark.po | 15 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 15 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 15 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 15 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 15 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 12 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 15 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 15 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 6 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 6 +- .../locale/br/LC_MESSAGES/CacheLog.po | 6 +- .../locale/de/LC_MESSAGES/CacheLog.po | 6 +- .../locale/es/LC_MESSAGES/CacheLog.po | 6 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 6 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 26 + .../locale/he/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 6 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 6 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 6 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 6 +- .../br/LC_MESSAGES/CasAuthentication.po | 6 +- .../ca/LC_MESSAGES/CasAuthentication.po | 68 ++ .../de/LC_MESSAGES/CasAuthentication.po | 6 +- .../es/LC_MESSAGES/CasAuthentication.po | 6 +- .../fr/LC_MESSAGES/CasAuthentication.po | 6 +- .../hu/LC_MESSAGES/CasAuthentication.po | 6 +- .../ia/LC_MESSAGES/CasAuthentication.po | 6 +- .../mk/LC_MESSAGES/CasAuthentication.po | 6 +- .../nl/LC_MESSAGES/CasAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 6 +- .../ru/LC_MESSAGES/CasAuthentication.po | 6 +- .../tl/LC_MESSAGES/CasAuthentication.po | 6 +- .../uk/LC_MESSAGES/CasAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 6 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 6 +- .../de/LC_MESSAGES/ClientSideShorten.po | 6 +- .../es/LC_MESSAGES/ClientSideShorten.po | 6 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 6 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 34 + .../he/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 6 +- .../id/LC_MESSAGES/ClientSideShorten.po | 6 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 6 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 6 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 27 + plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 6 +- .../locale/DirectionDetector.pot | 2 +- .../ast/LC_MESSAGES/DirectionDetector.po | 6 +- .../LC_MESSAGES/DirectionDetector.po | 6 +- .../br/LC_MESSAGES/DirectionDetector.po | 6 +- .../de/LC_MESSAGES/DirectionDetector.po | 6 +- .../es/LC_MESSAGES/DirectionDetector.po | 6 +- .../fi/LC_MESSAGES/DirectionDetector.po | 6 +- .../fr/LC_MESSAGES/DirectionDetector.po | 6 +- .../gl/LC_MESSAGES/DirectionDetector.po | 26 + .../he/LC_MESSAGES/DirectionDetector.po | 6 +- .../ia/LC_MESSAGES/DirectionDetector.po | 6 +- .../id/LC_MESSAGES/DirectionDetector.po | 6 +- .../ja/LC_MESSAGES/DirectionDetector.po | 6 +- .../lb/LC_MESSAGES/DirectionDetector.po | 6 +- .../mk/LC_MESSAGES/DirectionDetector.po | 6 +- .../nb/LC_MESSAGES/DirectionDetector.po | 6 +- .../nl/LC_MESSAGES/DirectionDetector.po | 6 +- .../pt/LC_MESSAGES/DirectionDetector.po | 6 +- .../ru/LC_MESSAGES/DirectionDetector.po | 6 +- .../tl/LC_MESSAGES/DirectionDetector.po | 6 +- .../uk/LC_MESSAGES/DirectionDetector.po | 6 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 6 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 6 +- .../locale/ca/LC_MESSAGES/Directory.po | 18 +- .../locale/de/LC_MESSAGES/Directory.po | 6 +- .../locale/fi/LC_MESSAGES/Directory.po | 6 +- .../locale/fr/LC_MESSAGES/Directory.po | 6 +- .../locale/ia/LC_MESSAGES/Directory.po | 6 +- .../locale/ja/LC_MESSAGES/Directory.po | 6 +- .../locale/mk/LC_MESSAGES/Directory.po | 6 +- .../locale/nl/LC_MESSAGES/Directory.po | 6 +- .../locale/sv/LC_MESSAGES/Directory.po | 6 +- .../locale/tl/LC_MESSAGES/Directory.po | 6 +- .../locale/uk/LC_MESSAGES/Directory.po | 6 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 28 + .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 44 + .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 28 + .../he/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 81 ++ .../locale/de/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 6 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 30 + .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 8 +- .../br/LC_MESSAGES/EmailRegistration.po | 6 +- .../ca/LC_MESSAGES/EmailRegistration.po | 27 +- .../de/LC_MESSAGES/EmailRegistration.po | 6 +- .../fr/LC_MESSAGES/EmailRegistration.po | 9 +- .../hu/LC_MESSAGES/EmailRegistration.po | 6 +- .../ia/LC_MESSAGES/EmailRegistration.po | 6 +- .../mk/LC_MESSAGES/EmailRegistration.po | 6 +- .../nl/LC_MESSAGES/EmailRegistration.po | 6 +- .../sv/LC_MESSAGES/EmailRegistration.po | 6 +- .../tl/LC_MESSAGES/EmailRegistration.po | 6 +- .../uk/LC_MESSAGES/EmailRegistration.po | 6 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/ia/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 6 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 6 +- plugins/Event/locale/Event.pot | 14 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 17 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 34 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 415 ++++++++ plugins/Event/locale/ia/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 18 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 18 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 30 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../FacebookBridge/locale/FacebookBridge.pot | 72 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 9 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 9 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 30 + .../locale/de/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 32 + .../locale/he/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 6 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 34 + .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 36 + .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 6 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ca/LC_MESSAGES/Geonames.po | 20 +- .../locale/de/LC_MESSAGES/Geonames.po | 6 +- .../locale/fi/LC_MESSAGES/Geonames.po | 6 +- .../locale/fr/LC_MESSAGES/Geonames.po | 6 +- .../locale/ia/LC_MESSAGES/Geonames.po | 6 +- .../locale/mk/LC_MESSAGES/Geonames.po | 6 +- .../locale/nl/LC_MESSAGES/Geonames.po | 6 +- .../locale/sv/LC_MESSAGES/Geonames.po | 6 +- .../locale/tl/LC_MESSAGES/Geonames.po | 6 +- .../locale/uk/LC_MESSAGES/Geonames.po | 6 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 6 +- .../locale/de/LC_MESSAGES/Gravatar.po | 6 +- .../locale/es/LC_MESSAGES/Gravatar.po | 6 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 6 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 62 +- .../locale/he/LC_MESSAGES/Gravatar.po | 6 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 6 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 6 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 30 + .../locale/tl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 6 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 14 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 65 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 55 ++ plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 6 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 26 + .../locale/he/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 35 + .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 6 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 6 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 34 + .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 6 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 6 +- .../locale/ca/LC_MESSAGES/Linkback.po | 6 +- .../locale/de/LC_MESSAGES/Linkback.po | 6 +- .../locale/es/LC_MESSAGES/Linkback.po | 6 +- .../locale/fi/LC_MESSAGES/Linkback.po | 6 +- .../locale/fr/LC_MESSAGES/Linkback.po | 6 +- .../locale/gl/LC_MESSAGES/Linkback.po | 40 + .../locale/he/LC_MESSAGES/Linkback.po | 6 +- .../locale/ia/LC_MESSAGES/Linkback.po | 6 +- .../locale/id/LC_MESSAGES/Linkback.po | 6 +- .../locale/mk/LC_MESSAGES/Linkback.po | 6 +- .../locale/nb/LC_MESSAGES/Linkback.po | 6 +- .../locale/nl/LC_MESSAGES/Linkback.po | 6 +- .../locale/pt/LC_MESSAGES/Linkback.po | 6 +- .../locale/ru/LC_MESSAGES/Linkback.po | 6 +- .../locale/tl/LC_MESSAGES/Linkback.po | 6 +- .../locale/uk/LC_MESSAGES/Linkback.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 6 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 28 + .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 6 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/gl/LC_MESSAGES/Memcache.po | 29 + .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/sv/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/gl/LC_MESSAGES/Memcached.po | 29 + .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/sv/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 6 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../MobileProfile/locale/MobileProfile.pot | 10 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 6 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 29 + .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 57 ++ .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 6 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 26 + .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 6 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 51 + plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 6 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- plugins/OMB/locale/OMB.pot | 2 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 6 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 917 ++++++++++++++++++ .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 6 +- .../OfflineBackup/locale/OfflineBackup.pot | 32 + .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- plugins/OpenID/locale/OpenID.pot | 31 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 27 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 86 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 13 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 19 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 21 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 13 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 22 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 22 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 13 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 22 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 22 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 6 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 30 + .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 6 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 148 +++ plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 6 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 27 + .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 32 + .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 68 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 6 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 6 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 6 +- .../locale/ar/LC_MESSAGES/Realtime.po | 6 +- .../locale/br/LC_MESSAGES/Realtime.po | 6 +- .../locale/ca/LC_MESSAGES/Realtime.po | 12 +- .../locale/de/LC_MESSAGES/Realtime.po | 6 +- .../locale/fr/LC_MESSAGES/Realtime.po | 6 +- .../locale/ia/LC_MESSAGES/Realtime.po | 6 +- .../locale/lv/LC_MESSAGES/Realtime.po | 6 +- .../locale/mk/LC_MESSAGES/Realtime.po | 6 +- .../locale/ne/LC_MESSAGES/Realtime.po | 6 +- .../locale/nl/LC_MESSAGES/Realtime.po | 6 +- .../locale/pl/LC_MESSAGES/Realtime.po | 6 +- .../locale/sv/LC_MESSAGES/Realtime.po | 6 +- .../locale/tl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tr/LC_MESSAGES/Realtime.po | 6 +- .../locale/uk/LC_MESSAGES/Realtime.po | 6 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 38 + .../locale/de/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 14 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 28 + .../locale/he/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 6 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 6 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 28 + .../locale/he/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 6 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 6 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 6 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 6 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 219 +++++ .../locale/de/LC_MESSAGES/SearchSub.po | 6 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 6 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 6 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 6 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 6 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 6 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 6 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 6 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 31 + .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 6 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 30 + .../he/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- plugins/SubMirror/locale/SubMirror.pot | 8 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 163 ++++ .../locale/de/LC_MESSAGES/SubMirror.po | 6 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 6 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 6 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/de/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 14 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 14 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 6 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 6 +- .../locale/es/LC_MESSAGES/TightUrl.po | 6 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 6 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/he/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 6 +- .../locale/id/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 6 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 6 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 6 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 55 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 12 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 10 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 10 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 10 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 6 +- .../locale/de/LC_MESSAGES/UserFlag.po | 6 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 6 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 6 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 6 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 6 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 6 +- .../locale/de/LC_MESSAGES/UserLimit.po | 6 +- .../locale/es/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/he/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 6 +- .../locale/id/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 6 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 6 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 6 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 6 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 6 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 6 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 6 +- .../locale/de/LC_MESSAGES/YammerImport.po | 6 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 6 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 6 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 6 +- 1530 files changed, 14999 insertions(+), 9781 deletions(-) create mode 100644 plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po create mode 100644 plugins/Activity/locale/ar/LC_MESSAGES/Activity.po create mode 100644 plugins/Activity/locale/eu/LC_MESSAGES/Activity.po create mode 100644 plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po create mode 100644 plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po create mode 100644 plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po create mode 100644 plugins/Blog/locale/gl/LC_MESSAGES/Blog.po create mode 100644 plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po create mode 100644 plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Comet/locale/gl/LC_MESSAGES/Comet.po create mode 100644 plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po create mode 100644 plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po create mode 100644 plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/Echo/locale/gl/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/Event/locale/gl/LC_MESSAGES/Event.po create mode 100644 plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po create mode 100644 plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po create mode 100644 plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Imap/locale/ca/LC_MESSAGES/Imap.po create mode 100644 plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po create mode 100644 plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po create mode 100644 plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po create mode 100644 plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po create mode 100644 plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po create mode 100644 plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po create mode 100644 plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po create mode 100644 plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po create mode 100644 plugins/Msn/locale/ca/LC_MESSAGES/Msn.po create mode 100644 plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po create mode 100644 plugins/OfflineBackup/locale/OfflineBackup.pot create mode 100644 plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po create mode 100644 plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/Poll/locale/fur/LC_MESSAGES/Poll.po create mode 100644 plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po create mode 100644 plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po create mode 100644 plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po create mode 100644 plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po create mode 100644 plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po create mode 100644 plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index ba7892ef11..732b660b9d 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,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:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:09+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -46,7 +46,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 +146,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 +177,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 +208,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 +226,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 +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 والأصدقاء" @@ -332,7 +329,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 +683,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 +962,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 +1214,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 +1255,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 +1384,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 +1424,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 +1715,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 +1882,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 +1949,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 +2034,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 +2156,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 +2481,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 +2858,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 +2919,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 +2930,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 +3982,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 +4145,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 +4153,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 +4291,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 +4335,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 +5021,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 +5039,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 +5054,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 +5172,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 @@ -5753,13 +5774,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 +5897,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." @@ -6716,9 +6736,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 +6782,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 +7625,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 +7850,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 +8316,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 +8614,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 +9078,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 +9098,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 +9181,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 +9411,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 +9431,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 @@ -9661,3 +9662,48 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "Public list cloud" +#~ msgstr "سحابة اللائحات العمومية" + +#~ msgid "These are largest lists on %s" +#~ msgstr "هذه هي أكبر اللائحات على %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "لم [يدرج](%%doc.tags%%) أحد أحدًا إلى الآن." + +#~ msgid "Be the first to list someone!" +#~ msgstr "كن الأول من يشترك بلائحة أحد ما !" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "لم لا [تسجل حسابا](%%action.register%%) وتكون أول من يدرج شخصا!" + +#~ msgid "List cloud" +#~ msgstr "سحابة اللائحات" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "لا أحد مدرج" +#~ msgstr[1] "شخص واحد مدرج" +#~ msgstr[2] "شخصان مدرجان" +#~ msgstr[3] "%d أشخاص مدرجون" +#~ msgstr[4] "%d شخصًا مدرجًا" +#~ msgstr[5] "%d شخص مدرج" + +#~ msgid "All subscribers" +#~ msgstr "جميع المشتركين" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "شارة" + +#~ 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 شخص هذا الإشعار" diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index c1b23608b8..ebb2f208f1 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +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:44:48+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" @@ -214,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. @@ -323,8 +322,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 +1975,78 @@ 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 "" + +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 "Групы %s" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3405,7 +3474,7 @@ msgstr "Налады IM" #. 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 +3482,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 +4369,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 +4893,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 +4958,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 +5056,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 +5068,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,51 +5124,63 @@ 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 +#, 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), які працуе на падставе " +"вольнага праграмнага забесьпячэньня [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. @@ -5216,11 +5264,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 @@ -5802,8 +5845,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 @@ -6767,19 +6809,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 +7613,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 +7830,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 +8213,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 +8952,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 +8972,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 +9285,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" @@ -9472,3 +9492,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "Public list cloud" +#~ msgstr "Воблака публічных сьпісаў" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Гэта самыя вялікія сьпісы на %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Пакуль што ніхто не дадаў да [сьпісаў](%%doc.tags%%)." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Будзьце першым, хто стварыў сьпіс!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "Чаму не [стварыць рахунак](%%action.register%%) і стаць першым, хто " +#~ "створыць новы сьпіс!" + +#~ msgid "List cloud" +#~ msgstr "Воблака сьпісаў" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "%d асоба ў сьпісе" +#~ msgstr[1] "%d асобы ў сьпісе" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 0433869bde..8bf734abd2 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:49+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:13+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -204,7 +204,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 +308,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 +1976,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 +4401,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 +5140,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 +5153,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 +5281,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 @@ -5867,8 +5896,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 @@ -6907,21 +6935,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 +7800,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 +8031,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 +8430,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 +9227,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 +9251,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 +9590,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 @@ -9808,3 +9807,29 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Общ поток, страница %d" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Това са хората, които четат бележките на %s." + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Не е открит методът в API." + +#~ msgid "All subscribers" +#~ msgstr "Всички абонати" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Табелка" + +#, fuzzy +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "Вече сте повторили тази бележка." +#~ msgstr[1] "Вече сте повторили тази бележка." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 4df5e1324e..41d6753cd5 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:15+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -204,7 +204,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 +313,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 +1957,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 +4378,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 +5107,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 +5122,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 +5256,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 @@ -5854,8 +5875,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 @@ -6869,19 +6889,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 +7733,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 +7960,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 +8350,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 +9116,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 +9136,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 +9460,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 @@ -9672,3 +9670,40 @@ msgstr "XML direizh, mankout a ra ar wrizienn XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Koumoulenn a merkoù foran" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Ar merkoù ziwezhañ evit ar re vrudetañ war %s " + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Bezit an hini gentañ oc'h embann unan !" + +#, fuzzy +#~ 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 !" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "N'eo ket bet kavet an implijer." + +#~ msgid "All subscribers" +#~ msgstr "An holl goumananterien" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Badj" + +#, fuzzy +#~ 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." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index a5d7ab6fb1..acf4fe5592 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:17+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -219,7 +219,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 +329,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 +1974,79 @@ 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 "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" + +#, fuzzy +msgid "Getting started" +msgstr "S'ha desat la configuració." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Quant a" + +#, fuzzy +msgid "About this site" +msgstr "Desbloca l'usuari" + +#. 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 "" + +#. 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" + +#, fuzzy +msgid "Contact info" +msgstr "Contacte" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetes" + +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 d'usuaris" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3396,13 +3466,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 +3479,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 +4361,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 +5107,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,14 +5126,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** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure " @@ -5232,11 +5260,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 @@ -5846,13 +5869,12 @@ msgstr "Aquestes són les persones que %s escolta." #. 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 esteu escoltant els avisos de ningú ara mateix, proveu de subscriure-us a " "gent que coneixeu. Proveu de [cercar gent](%%action.peoplesearch%%), trobar " @@ -6877,19 +6899,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 +7715,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 +7937,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 "" + #. 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 +8407,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 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 +8707,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 +9165,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 +9185,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 +9268,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" @@ -9517,17 +9506,28 @@ msgstr[0] "A %%s li agrada." msgstr[1] "A %%s els hi agrada." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Heu repetit l'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] "Una persona ha repetit l'avís." -msgstr[1] "%d persones ha repetit l'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] "A %%s i a %d altres els hi agrada." +msgstr[1] "A %%s i a %d els hi agrada." + +#. 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] "A %%s li agrada." +msgstr[1] "A %%s els hi agrada." #. TRANS: Form legend. #, php-format @@ -9712,3 +9712,42 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." + +#~ msgid "Public list cloud" +#~ msgstr "Núvol públic de llistes" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Aquestes són les llistes més extenses a %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Ningú ha [llistat](%%doc.tags%%) encara ningú." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Sigueu el primer en llistar algú!" + +#~ 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ú!" + +#~ msgid "List cloud" +#~ msgstr "Núvol de llistes" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "S'ha llistat 1 persona" +#~ msgstr[1] "S'han llistat %d persones" + +#~ msgid "All subscribers" +#~ msgstr "Tots els subscriptors" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insígnia" + +#~ 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." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 6261aff4e3..f8302dc9fd 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,18 +14,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:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:18+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -209,7 +209,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 +321,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 +2024,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 +4491,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 +5253,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 +5271,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 +5406,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 @@ -6007,13 +6033,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 " @@ -7061,21 +7086,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 +7941,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 +8174,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 +8667,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 +9468,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 +9492,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 +9838,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 @@ -10062,3 +10059,46 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Veřejný tag cloud" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Poslední nejpopulárnější značky na %s " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Nikdo ještě neposlal oznámení s [tagem](%%doc.tags%%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Pošlete něco jako první!" + +#, fuzzy +#~ 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í!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr " API metoda nebyla nalezena." + +#~ msgid "All subscribers" +#~ msgstr "Všichni odběratelé" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Odznak" + +#, fuzzy +#~ 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í." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 2a549f9339..df9434ddc8 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -30,17 +30,17 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:20+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -231,7 +231,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 +341,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" @@ -2002,6 +1999,83 @@ 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. +#, 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 "Hilfe" + +#, fuzzy +msgid "Getting started" +msgstr "Einstellungen gespeichert." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Über" + +#, fuzzy +msgid "About this site" +msgstr "Diesen Benutzer freigeben" + +#. 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 "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 "Gruppen" + +#, fuzzy +msgid "Using groups" +msgstr "Benutzer-Gruppen" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4335,52 +4409,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." @@ -5151,7 +5179,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 +5197,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 " @@ -5306,11 +5334,6 @@ msgstr "Mehr anzeigen" 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 @@ -5942,13 +5965,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 " @@ -7005,21 +7027,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" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7860,14 +7872,6 @@ 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" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8102,6 +8106,11 @@ msgstr "Mehr anzeigen" 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 "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." @@ -8596,6 +8605,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 ist der Gruppe „%2$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. @@ -9410,22 +9423,6 @@ 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" @@ -9450,19 +9447,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 "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" @@ -9800,16 +9784,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 @@ -10003,3 +9997,52 @@ msgstr "Ungültiges XML, XRD-Root fehlt." #, php-format msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Öffentliche Tag-Wolke" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Das sind die beliebtesten Tags auf „%s“" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc." +#~ "tags%%)“ gepostet." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Sei der erste, der etwas schreibt!" + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "API-Methode nicht gefunden." + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 Person aufgeführt" +#~ msgstr[1] "%d Personen aufgeführt" + +#~ msgid "All subscribers" +#~ msgstr "Alle Abonnenten" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Plakette" + +#, fuzzy +#~ 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" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index aaa42d98b7..d5a3d334a1 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,18 +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:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:22+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -210,7 +210,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 +321,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 +2010,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 +4456,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 +5204,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 +5222,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 +5357,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 @@ -5946,8 +5973,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 @@ -6972,21 +6998,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 +7833,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 +8063,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 +8470,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 +9263,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 +9286,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 +9618,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 @@ -9836,3 +9833,37 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Public tag cloud" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "These are most popular recent tags on %s " + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "API method not found." + +#~ msgid "All subscribers" +#~ msgstr "All subscribers" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Badge" + +#, fuzzy +#~ 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." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index a978748c78..417e29d2a5 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:23+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +208,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 +318,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 +1986,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 +4413,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 +5162,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 +5179,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 +5311,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 @@ -5906,13 +5934,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 " @@ -6947,21 +6974,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 +7816,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 +8045,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 +8530,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 +9327,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 +9351,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 +9692,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 @@ -9908,3 +9906,44 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Publika markil-nubo" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Jen la plej popularaj entikedoj lastatempaj ĉe %s " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Estu la unua afiŝanto!" + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Listo ne ekzistas." + +#~ msgid "All subscribers" +#~ msgstr "Ĉiuj abonantoj" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insigno" + +#, fuzzy +#~ 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." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 8dd1f0fb59..4e1d1a1a8f 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -24,17 +24,17 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:25+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -225,7 +225,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 +337,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 +1989,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 +4121,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 +4292,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 +4439,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 +4938,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 +5203,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 +5222,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 +5359,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 @@ -5961,13 +5992,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 +6173,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 +6190,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" @@ -7022,21 +7053,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 +7904,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 +8138,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 +8630,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 +9440,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 +9464,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 +9804,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 @@ -10016,3 +10018,46 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Nube de etiquetas pública" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Estas son las etiquetas recientes más populares en %s" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "¡Sé la primera persona en publicar!" + +#, fuzzy +#~ 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?" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Método de API no encontrado." + +#~ msgid "All subscribers" +#~ msgstr "Todos los suscriptores" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insignia" + +#, fuzzy +#~ 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." diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 51d142b292..f0ddaa7295 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:26+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-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +99,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 +212,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 +245,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 +310,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 +322,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 +436,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 +1729,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 +1800,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 +1958,79 @@ 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 "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Laguntza" + +#, fuzzy +msgid "Getting started" +msgstr "Ezarpenak gordeak." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Honi buruz" + +#, fuzzy +msgid "About this site" +msgstr "Desblokeatu erabiltzaile hau" + +#. 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 "Kontaktatu" + +#, fuzzy +msgid "Contact info" +msgstr "Kontaktatu" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiketak" + +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 "Taldeak" + +#, fuzzy +msgid "Using groups" +msgstr "Erabiltzailearen taldeak" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2697,13 +2761,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." @@ -3389,13 +3453,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 +3466,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 +3787,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 +3915,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 +3949,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 +3957,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 +3990,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 +4272,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 +4287,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 +4348,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." @@ -4702,9 +4718,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 +4844,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 +4963,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 +5005,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 @@ -5060,9 +5072,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 +5097,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,14 +5116,14 @@ 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 +#, 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** [StatusNet](http://status.net/) software librean oinarritutako " "[mikroblogintza](http://eu.wikipedia.org/wiki/Mikroblogintza) %%%%site.name%%" @@ -5239,11 +5251,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 +5277,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. @@ -5849,13 +5856,12 @@ msgstr "%s erabiltzaileak jende hauen oharrak jarraitzen ditu." #. 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 "" "Oraintxe bertan ez dituzu inoren oharrak jarraitzen, saiatu ezagutzen duzun " "jendera harpidetzen. Probatu [jendearen bilaketa](%%action.peoplesearch%%), " @@ -5894,9 +5900,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 +6182,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." @@ -6352,9 +6358,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." @@ -6872,19 +6878,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 +7077,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 +7091,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 +7286,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 +7695,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 +7725,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 +7738,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 +7759,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 +7801,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 +7821,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,12 +7911,16 @@ 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 "Partaide zaren taldeak ikusi." + +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" msgstr "" #. TRANS: Client exception 406 @@ -8068,15 +8056,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 +8385,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 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. @@ -8486,10 +8477,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 +8547,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 +8596,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 +8645,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 +8685,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 +8944,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" @@ -9154,21 +9143,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 +9163,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 +9246,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" @@ -9522,17 +9485,28 @@ msgstr[0] "%%s(e)k hau atsegin du." msgstr[1] "%%s(e)k hau atsegin dute." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy 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. -#, 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." +#. 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 eta hau bezalako beste %d." +msgstr[1] "%%s eta hau bezalako beste %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(e)k hau atsegin du." +msgstr[1] "%%s(e)k hau atsegin dute." #. TRANS: Form legend. #, php-format @@ -9634,9 +9608,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). @@ -9718,3 +9691,42 @@ msgstr "XML baliogabea, XRD erroa falta da." #, php-format msgid "Getting backup from file '%s'." msgstr "'%s'-ren babeskopia eskuratzen." + +#~ msgid "Public list cloud" +#~ msgstr "Zerrenda publikoen hodeia" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Hauek dira zerrenda luzeenak %s(e)n" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Inork ez du beste inor [zerrendatu](%%doc.tags%%) oraindik." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Izan zaitez lehena norbait zerrendaratzen!" + +#~ 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!" + +#~ msgid "List cloud" +#~ msgstr "Zerrenden hodeia" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "Pertsona 1 zerrendatuta" +#~ msgstr[1] "%d pertsona zerrendatuta" + +#~ msgid "All subscribers" +#~ msgstr "Harpidedun guztiak" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Txertatu" + +#~ 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." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 7b6f701dfa..eb778191a3 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,9 +29,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -220,7 +220,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 +330,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 +1999,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 +4464,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 +5221,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 +5240,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 +5375,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 @@ -5978,13 +6005,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%%) را امتحان کنید، " @@ -7026,21 +7052,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 +7897,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 +8126,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 +8614,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 +9411,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 +9435,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 +9768,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 @@ -9982,3 +9978,44 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "ابر برچسب عمومی" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "این‌ها محبوب‌ترین برچسب‌های اخیر روی %s هستند " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "اولین نفری باشید که چیزی می‌فرستد!" + +#, fuzzy +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمی‌کنید و اولین نفری " +#~ "باشید که چیزی می‌فرستد!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "رابط مورد نظر پیدا نشد." + +#~ msgid "All subscribers" +#~ msgstr "تمام مشترک‌ها" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "نشان" + +#, fuzzy +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "قبلا آن پیام تکرار شده است." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 6aa35683f7..adea8ffdcd 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:30+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -219,7 +219,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 +330,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 +1971,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" @@ -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 @@ -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 @@ -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 @@ -9773,3 +9767,47 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Julkinen tagipilvi" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " +#~ "vielä." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Ole ensimmäinen joka lähettää päivityksen!" + +#, fuzzy +#~ 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)!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "API-metodia ei löytynyt." + +#~ msgid "All subscribers" +#~ msgstr "Kaikki tilaajat" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Tönäise" + +#, fuzzy +#~ 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." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index c161ad65dc..db08e5d4e3 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,17 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:32+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +116,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 +231,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 +252,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 +342,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 +1443,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 +1790,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 +2013,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 +3954,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 +4377,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 +4439,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 +5195,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 +5214,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 +5352,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 @@ -5962,13 +5979,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." @@ -7011,21 +7027,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 +7876,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 +8111,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 +8356,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 +8368,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 +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 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 +8789,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 +8820,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 +8956,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 +8990,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 +9083,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 +9111,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 +9153,6 @@ msgid "Replies" msgstr "Réponses" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favoris" @@ -9189,10 +9192,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 +9287,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 +9375,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 +9387,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 +9407,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 +9603,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 +9743,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 +9863,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" @@ -9973,3 +9953,51 @@ msgstr "XML invalide, racine XRD manquante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Nuage de marques public" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Ces étiquettes récentes sont les plus populaires sur %s" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%" +#~ "%)." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Soyez le premier sur la liste quelqu’un !" + +#, fuzzy +#~ 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 !" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Page non trouvée." + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 personne listée" +#~ msgstr[1] "%d personnes listées" + +#~ msgid "All subscribers" +#~ msgstr "Tous les abonnés" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insigne" + +#, fuzzy +#~ 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." diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 8bb26a37a3..7132006461 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:34+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-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +93,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 +204,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 +314,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 +422,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 +1039,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 +1110,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 +1702,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 +1771,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 +1923,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 +2046,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 +2443,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 +2536,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 +2634,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 +2706,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 +2908,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 +3378,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 +3713,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 +3841,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 +3875,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 +3887,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 +4112,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 +4129,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 +4190,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 +4205,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 +4229,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 +4263,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 +4288,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 +4817,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 +4973,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 +4992,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 +5126,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 @@ -5706,13 +5720,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 +5974,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 +6042,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. @@ -6196,9 +6209,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 +6715,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 +6887,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 +6899,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 +6910,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 +6928,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 +7528,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 +7559,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 +7572,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 +7592,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 +7634,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 +7743,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 +7877,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 +8128,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 +8217,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 +8421,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 +8871,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 +8891,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 +8974,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 +9204,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 +9327,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). @@ -9429,3 +9410,38 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "Public list cloud" +#~ msgstr "Nûl des listis publichis" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Chestis a son lis listis plui popolârs su %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Nissun nol à ancjemò metût altris in [listis](%%%%doc.tags%%%%)." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Met cualchidun in liste par prin!" + +#~ 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!" + +#~ msgid "List cloud" +#~ msgstr "Nûl des listis" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 persone in liste" +#~ msgstr[1] "%d personis in liste" + +#~ msgid "All subscribers" +#~ msgstr "Ducj i sotscritôrs" + +#~ 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." diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index b154fa320c..a95fac1c3b 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:35+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -92,9 +92,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 +203,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 +302,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 +314,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 +1438,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 +1554,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 +1605,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 +1620,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 +1666,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 +1688,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 +1769,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 +1783,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 +1903,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 +1933,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 +1963,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 +1985,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 "" + +#. 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 "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2772,10 +2831,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 +2870,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 +3037,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 +3067,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 +3190,6 @@ msgstr "" "compartidas!" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" msgstr "Identificarse" @@ -3195,7 +3249,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 +3269,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 +3326,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 +3587,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 +3611,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 +3622,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 +3637,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 +3651,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 +3722,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 +3755,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 +3939,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 +3952,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 +3970,6 @@ msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Públicas" @@ -3941,7 +3981,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 +4433,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 +4534,6 @@ msgid "Recover" msgstr "Recuperar" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "Recuperar" @@ -4558,12 +4552,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 +4581,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 +4598,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 +4620,6 @@ msgid "Registration successful" msgstr "Rexistrouse correctamente" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Rexistrarse" @@ -4640,7 +4629,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 +4641,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 +4764,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 +4866,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 +4972,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 +4981,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 +5033,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 +5183,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 +5202,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 +5312,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 +5328,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 @@ -5485,7 +5455,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 +5495,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 +5539,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 +5564,6 @@ msgstr "" "sexa posible" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Límites" @@ -5808,7 +5773,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 +5794,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 +5966,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 +5993,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 +6045,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 +6065,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 +6079,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 +6204,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 +6260,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. @@ -6632,7 +6588,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 +6960,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 +6975,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 +7009,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 +7032,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 +7041,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 +7050,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 +7059,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 +7068,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 +7077,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 +7086,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 +7111,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 +7217,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 +7425,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 +7450,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 +7658,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 +7846,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 +7934,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 +7943,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 +7960,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 +8034,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 +8062,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 +8115,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, @@ -8280,18 +8201,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 +8563,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 +8775,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 +8825,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 +8865,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 +8888,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 +8911,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 +9034,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 +9144,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 +9158,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 +9167,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 +9204,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 +9216,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 +9225,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 +9237,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 +9248,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 +9261,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 +9328,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 +9348,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 +9372,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 +9563,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 +9633,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 +9684,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 +9735,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 +9803,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). @@ -10005,3 +9893,45 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Nube de etiquetas públicas" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Estas son as etiquetas máis populares en %s " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Sexa o primeiro en publicar unha!" + +#, fuzzy +#~ 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?" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Non se atopou o método da API." + +#~ msgid "All subscribers" +#~ msgstr "Todos os subscritores" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insignia" + +#, fuzzy +#~ 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." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 6e46778a14..c96d03644b 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:37+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -206,7 +206,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 +314,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 +1909,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 +4196,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 +4888,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 +4901,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 +5027,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 @@ -5588,8 +5612,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 @@ -6558,19 +6581,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 +7385,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 +7602,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 +7984,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 +8722,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 +8742,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 +9055,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 @@ -9261,3 +9262,11 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "All subscribers" +#~ msgstr "כל המנויים" + +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "אדם אחד הדהד את העדכון הזה." +#~ msgstr[1] "%d אנשים הדהדו את העדכון הזה." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index ca9ae52c56..83977aeff4 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:38+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +208,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 +312,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 +1941,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 +4288,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 +4993,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 +5006,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 +5137,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 @@ -5717,8 +5740,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 @@ -6724,21 +6746,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 +7610,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 +7842,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 +8241,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 +9033,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 +9057,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 +9393,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 @@ -9623,3 +9618,39 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." #, php-format msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Zjawna časowa lajsta, strona %d" + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Budź prěni, kiž tajki pisa!" + +#, fuzzy +#~ 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ć?" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Wužiwar njenamakany." + +#~ msgid "All subscribers" +#~ msgstr "Wšitcy abonenća" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Plaketa" + +#, fuzzy +#~ 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." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index fa4c68a10c..a1bde88ad2 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:40+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-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +207,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 +315,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 +1988,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 +4397,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 +5116,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 +5135,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 +5268,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 @@ -5837,8 +5875,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 @@ -6829,21 +6866,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 +7704,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 +7938,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 +8391,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 +9167,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 +9191,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 +9526,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 @@ -9730,3 +9737,20 @@ msgstr "Érvénytelen XML, hiányzó XRD gyökér." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "List cloud" +#~ msgstr "Listafelhő" + +#~ msgid "All subscribers" +#~ msgstr "Minden feliratkozott" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Megbök" + +#, fuzzy +#~ 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." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index d6c575f463..cbae495456 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:42+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +208,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 +318,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 +1962,79 @@ 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 "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Adjuta" + +#, fuzzy +msgid "Getting started" +msgstr "Preferentias confirmate." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "A proposito" + +#, fuzzy +msgid "About this site" +msgstr "Disblocar iste usator" + +#. 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 "Contacto" + +#, fuzzy +msgid "Contact info" +msgstr "Contacto" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquettas" + +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 "Gruppos" + +#, fuzzy +msgid "Using groups" +msgstr "Gruppos de usatores" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3380,13 +3450,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 +3463,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 +4343,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 +5085,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,14 +5103,14 @@ 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 +#, 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 gruppo de usatores in %%%%site.name%%%%, un servicio de [micro-" "blogging](http://ia.wikipedia.org/wiki/Microblog) a base del software libere " @@ -5209,11 +5237,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 @@ -5819,13 +5842,12 @@ msgstr "%s seque le notas de iste personas." #. 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 "" "Tu non seque le notas de alcuno in iste momento. Tenta subscriber te a " "personas que tu cognosce. Proba [le recerca de personas](%%action." @@ -6841,19 +6863,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 +7676,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 +7898,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 "" + #. 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 +8366,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 ha adherite al 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 +8666,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 +9126,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 +9146,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 +9229,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 +9454,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 +9462,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 +9471,32 @@ 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. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Tu ha repetite iste nota." -#. 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] "Un persona ha repetite iste nota." -msgstr[1] "%d personas ha repetite iste nota." +#. 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 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. +#. 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 apprecia isto." +msgstr[1] "%%s apprecia isto." #. TRANS: Form legend. #, php-format @@ -9682,3 +9681,42 @@ msgstr "XML invalide, radice XRD mancante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." + +#~ msgid "Public list cloud" +#~ msgstr "Listario public" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Istes es le listas le plus grande in %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Nemo ha ancora [listate](%%doc.tags%%) alcuno." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Sia le prime a listar alcuno!" + +#~ 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?" + +#~ msgid "List cloud" +#~ msgstr "Listario" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 persona listate" +#~ msgstr[1] "%d personas listate" + +#~ msgid "All subscribers" +#~ msgstr "Tote le subscriptores" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Insignia" + +#~ 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." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 1d86e1ba20..73085a14f4 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:43+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +218,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 +328,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 +1994,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 +4459,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 +5209,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 +5228,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 +5360,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 @@ -5966,13 +5991,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 " @@ -7026,21 +7050,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 +7903,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 +8134,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 +8626,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 +9420,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 +9440,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 +9774,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 @@ -9986,3 +9984,45 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Insieme delle etichette" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Queste sono le etichette più usate e recenti su %s " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Nessuno ha ancora scritto un messaggio con un [hashtag](%%doc.tags%%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Scrivilo tu!" + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Metodo delle API non trovato." + +#~ msgid "All subscribers" +#~ msgstr "Tutti gli abbonati" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Badge" + +#, fuzzy +#~ 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." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 8c592e1560..6359e1c7b6 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:45+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -35,6 +35,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 +171,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 +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. @@ -320,8 +324,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 さんとその友人" @@ -1934,6 +1936,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" @@ -2812,7 +2887,7 @@ 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). @@ -2828,14 +2903,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 +3409,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 +4301,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 +4553,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 +4900,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 +5033,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 +5052,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 +5185,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 @@ -5760,13 +5788,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%%) を試してください。そし" @@ -6749,19 +6776,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 +6882,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 +7209,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 +7354,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 +7366,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 +7378,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 +7579,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 +7627,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 +7794,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 "このページはあなたが承認したメディアタイプでは利用できません。" @@ -7964,7 +7980,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s\n" +"%2$s" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -8236,6 +8252,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 のあなたのグループ %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 +9008,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 +9028,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 +9111,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" @@ -9350,17 +9344,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" @@ -9417,7 +9421,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?" @@ -9540,3 +9544,32 @@ msgstr "無効なXMLです、XRD root が誤っています" #, php-format msgid "Getting backup from file '%s'." msgstr "ファイル '%s' からバックアップを取得する。" + +#~ msgid "Public list cloud" +#~ msgstr "パブリックリストクラウド" + +#~ msgid "These are largest lists on %s" +#~ msgstr "これらは %s 上の最大のリストです。" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "まだ誰も [リスト](%%doc.tags%%) 付きのつぶやきを投稿していません。" + +#~ msgid "Be the first to list someone!" +#~ msgstr "リストの1番目になってください!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投" +#~ "稿をしてください!" + +#~ msgid "List cloud" +#~ msgstr "クラウドリスト" + +#~ msgid "All subscribers" +#~ msgstr "すべてのフォローされている" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "バッジ" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 19596ebb38..3834ec8fee 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:47+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -204,7 +204,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 +314,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 +1988,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 +4436,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 +5193,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 +5206,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 +5340,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 @@ -5931,13 +5962,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%%), " @@ -6983,21 +7013,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 +7857,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 +8088,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 +8553,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 +9351,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 +9375,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 +9711,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 @@ -9921,3 +9921,43 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "საჯარო სანიშნეების ღრუბელი." + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "ეს არის ყველაზე პოპულარული სანიშნეები %s–ზე " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "დაპოსტე პირველმა!" + +#, fuzzy +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "[დარეგისტრირდი](%%action.register%%) და დაპოსტე პირველმა!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "API მეთოდი ვერ მოიძებნა." + +#~ msgid "All subscribers" +#~ msgstr "ყველა გამომწერი" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "იარლიყი" + +#, fuzzy +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "ეს შეტყობინება უკვე გამეორებულია." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f68a171444..d836fb8867 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:48+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -209,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. @@ -320,8 +319,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 +1932,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 +4291,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 +5018,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 +5036,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 +5168,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 @@ -5744,13 +5770,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%%)을 사용해 관심 있는 그룹의 회원을 찾아 보시고, " @@ -6746,19 +6771,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 +7572,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 +7789,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 +8253,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 +9013,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 +9033,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 +9346,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" @@ -9545,3 +9547,31 @@ msgstr "XML이 잘못되었습니다. XRD 루트가 없습니다." #, php-format msgid "Getting backup from file '%s'." msgstr "'%s' 파일에서 백업을 가져옵니다." + +#~ msgid "Public list cloud" +#~ msgstr "공개 리스트 클라우드" + +#~ msgid "These are largest lists on %s" +#~ msgstr "다음은 %s에서 가장 인기 있는 리스트입니다." + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "아직 아무도 [리스트](%%doc.tags%%)가 없습니다." + +#~ msgid "Be the first to list someone!" +#~ msgstr "리스트에 넣는 첫번째 사람이 되세요!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "[계정을 등록해](%%action.register%%) 리스트에 넣는 첫번째 사람이 되세요!" + +#~ msgid "List cloud" +#~ msgstr "리스트 클라우드" + +#~ msgid "All subscribers" +#~ msgstr "모든 구독자" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "배지" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 35d0db263d..9e21baf03e 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:50+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -211,7 +211,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 +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 и пријатели" @@ -1965,6 +1962,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" @@ -3387,13 +3457,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 +3471,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 +4355,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 +5103,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,14 +5122,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://mk.wikipedia.org/wiki/Микроблогирање) заснована на " @@ -5227,11 +5256,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 @@ -5840,13 +5864,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%%), " @@ -6868,19 +6891,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 +7707,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 +7929,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 +8398,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. @@ -8682,9 +8698,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 +9157,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 +9177,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 +9260,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" @@ -9509,17 +9498,28 @@ msgstr[0] "%%s го бендисува ова." msgstr[1] "%%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 лица." +#. 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 други го бендисале ова." + +#. 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 @@ -9705,3 +9705,42 @@ msgstr "Неважечки XML. Нема XRD-корен." #, php-format msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." + +#~ msgid "Public list cloud" +#~ msgstr "Облак од јавни списоци" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Ова се најпопуларните скорешни ознаки на %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Сè уште никој нема [наведено](%%doc.tags%%) никого на списокот." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Бидете првиот што ќе наведе некого!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "Зошто не [регистрирате сметка](%%action.register%%) и станете првиот што " +#~ "ќе наведе некого!" + +#~ msgid "List cloud" +#~ msgstr "Облак со списоци" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "Наведено е 1 лице" +#~ msgstr[1] "Наведени се %d лица" + +#~ msgid "All subscribers" +#~ msgstr "Сите претплатници" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Значка" + +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "Забелешкава ја има повторено едно лице." +#~ msgstr[1] "Забелешкава ја имаат повторено %d лица." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 028180ccd8..5d51429784 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:52+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-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +201,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 +305,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 +1918,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 +4291,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 +5005,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 +5018,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 +5152,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 @@ -5732,8 +5761,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 @@ -6728,21 +6756,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 +7586,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 +7814,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 +8204,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 +8993,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 +9016,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 +9341,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 @@ -9553,3 +9553,36 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ" + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുക!" + +#, fuzzy +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ " +#~ "വ്യക്തിയാകുകയും ചെയ്തുകൂട!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." + +#~ msgid "All subscribers" +#~ msgstr "എല്ലാ വരിക്കാരും" + +#, fuzzy +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#~ msgstr[1] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 9789310614..b40aaf85f8 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -14,18 +14,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:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:56+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -211,7 +211,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 +321,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 +1969,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 +4402,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 +5158,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 +5177,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 +5311,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 @@ -5914,8 +5940,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 @@ -6941,21 +6966,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" @@ -7808,14 +7823,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 +8055,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 +8541,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 +9356,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 +9379,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 +9717,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 @@ -9936,3 +9932,46 @@ msgstr "Ugyldig XML, mangler XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Offentlig merkelappsky" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Dette er de siste mest populære merkelappene på %s " + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Vær den første til å poste en!" + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Bruker ikke funnet." + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 person listet opp" +#~ msgstr[1] "%d personer listet opp" + +#~ msgid "All subscribers" +#~ msgstr "Alle abonnenter" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Knuff" + +#, fuzzy +#~ 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." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 25d37149d5..774d7d0f10 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:54+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -216,7 +216,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. @@ -328,8 +327,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" @@ -1994,6 +1991,79 @@ 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 "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Help" + +#, fuzzy +msgid "Getting started" +msgstr "De instellingen zijn opgeslagen." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Over" + +#, fuzzy +msgid "About this site" +msgstr "Deblokkeer deze gebruiker." + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Veel gestelde vragen" + +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 "Labels" + +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 "Groepen" + +#, fuzzy +msgid "Using groups" +msgstr "Gebruikersgroepen" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3424,13 +3494,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 +3508,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 +4388,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." @@ -5111,7 +5140,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,14 +5159,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** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " @@ -5264,11 +5293,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 @@ -5882,13 +5906,12 @@ msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." #. 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 "" "U bent op dit moment op geen enkele gebruiker geabonneerd. Abonneer u op " "gebruikers die u kent. [Zoek gebruikers](%%action.peoplesearch%%), bekijk de " @@ -6924,19 +6947,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 +7771,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 +7993,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 "" + #. 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 +8464,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 is lid geworden van de 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 +8763,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 +9222,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 +9242,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 +9325,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" @@ -9585,17 +9574,28 @@ msgstr[0] "%%s vindt dit leuk." msgstr[1] "%%s vinden dit leuk." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy 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. -#, 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." +#. 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 en %d ander vinden dit leuk." +msgstr[1] "%%s en %d anderen vinden dit leuk." + +#. 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 vindt dit leuk." +msgstr[1] "%%s vinden dit leuk." #. TRANS: Form legend. #, php-format @@ -9780,3 +9780,42 @@ msgstr "Ongeldige XML. De XRD-root mist." #, php-format msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +#~ msgid "Public list cloud" +#~ msgstr "Publieke lijstwoordwolk" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Dit zijn de grootste lijsten op %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Niemand heeft nog iemand in een [lijst](%%doc.tags%%) opgenomen." + +#~ msgid "Be the first to list someone!" +#~ msgstr "U kunt de eerste zijn die iemand in een lijst opneemt!" + +#~ 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!" + +#~ msgid "List cloud" +#~ msgstr "Lijstwoordwolk" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "Eén persoon in lijst" +#~ msgstr[1] "%d personen in de lijst" + +#~ msgid "All subscribers" +#~ msgstr "Alle abonnees" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Widget" + +#~ 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." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index a3dae469ed..7715035fd5 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -206,7 +206,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 +316,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 +1972,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 +2684,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 +2825,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 +3445,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 +3598,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 +3805,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 +3835,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 +3934,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 +3952,6 @@ msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Publiczny" @@ -4017,9 +4085,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 +4123,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 +4232,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 +4251,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 +4409,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 +4578,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 +4595,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 +5166,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 +5185,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 +5322,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 @@ -5939,13 +5951,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%%), " @@ -7005,21 +7016,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 +7868,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 +8101,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 +8592,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 +9390,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 +9414,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 +9758,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 @@ -9996,3 +9979,48 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Publiczna chmura znaczników" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "To są najpopularniejsze ostatnie znaczniki w witrynie %s" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%" +#~ "%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Zostań pierwszym, który go wyśle." + +#, fuzzy +#~ 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." + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Nie odnaleziono strony." + +#~ msgid "All subscribers" +#~ msgstr "Wszyscy subskrybenci" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Odznaka" + +#, fuzzy +#~ 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." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 5179e652c0..6c6a369960 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:59+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +218,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 +329,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 +1971,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 +4423,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 +5188,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 +5207,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 +5343,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 @@ -5947,13 +5973,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%%), " @@ -7010,21 +7035,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 +7878,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 +8110,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 +8600,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 +9404,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 +9428,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 +9772,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 @@ -9991,3 +9987,45 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Nuvem de categorias pública" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Estas são as categorias recentes mais populares em %s " + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Ainda ninguém publicou uma nota com uma [categoria](%%doc.tags%%)." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Seja a primeira pessoa a publicar uma!" + +#, fuzzy +#~ 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!" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "Utilizador não encontrado." + +#~ msgid "All subscribers" +#~ msgstr "Todos os subscritores" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Emblema" + +#, fuzzy +#~ 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." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 97d69bcd17..448832bace 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,18 +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:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:01+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +218,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 +331,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 +1987,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 +4391,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 +5140,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 +5159,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 +5294,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 @@ -5878,13 +5902,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." @@ -6910,21 +6933,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 +7753,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 +7983,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 +8456,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 +9248,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 +9272,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 +9612,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 @@ -9832,3 +9827,46 @@ msgstr "XML inválido, raiz XRD perdida." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtendo um backup do arquivo '%s'." + +#, fuzzy +#~ msgid "Public list cloud" +#~ msgstr "Nuvem de etiquetas públicas" + +#, fuzzy +#~ msgid "These are largest lists on %s" +#~ msgstr "Estas são as etiquetas recentes mais populares no %s" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "" +#~ "Ninguém publicou nenhuma mensagem com a [etiqueta](%%doc.tags%%) ainda." + +#, fuzzy +#~ msgid "Be the first to list someone!" +#~ msgstr "Seja o primeiro a publicar uma!" + +#, fuzzy +#~ 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?" + +#, fuzzy +#~ msgid "List cloud" +#~ msgstr "O método da API não foi encontrado!" + +#~ msgid "All subscribers" +#~ msgstr "Todos os assinantes" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Mini-aplicativo" + +#, fuzzy +#~ 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." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index d119239c92..33952226c0 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,18 +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:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:03+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -220,7 +220,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 +328,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 +1986,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" @@ -4316,48 +4386,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 +5130,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 +5149,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 +5281,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 @@ -5865,13 +5888,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." @@ -6894,19 +6916,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 +7741,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 +7970,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 +8442,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. @@ -9188,21 +9203,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 +9223,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 +9548,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 @@ -9761,3 +9762,44 @@ msgstr "Неверный XML, отсутствует корень XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." + +#~ msgid "Public list cloud" +#~ msgstr "Облако открытых списков" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Самые большие списки на %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Пока никто никого не добавлял в [списки](%%doc.tags%%)." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Станьте первым! Начните новый список!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "Почему бы не [зарегистрироваться](%%action.register%%) и не создать новый " +#~ "список?" + +#~ msgid "List cloud" +#~ msgstr "Облако списков" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "%d человек в списке" +#~ msgstr[1] "%d человека в списке" +#~ msgstr[2] "%d человек в списке" + +#~ msgid "All subscribers" +#~ msgstr "Все подписчики" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Бедж" + +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "Запись повторена %d пользователем." +#~ msgstr[1] "Запись повторена %d пользователями." +#~ msgstr[2] "Запись повторена %d пользователями." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 604747a912..ac0c5dcde1 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-10-10 13:38+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 "" @@ -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 " @@ -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 @@ -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 "" @@ -7286,20 +7315,20 @@ 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,7 +7358,7 @@ 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 "" @@ -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..fc287d8df2 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:37+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:05+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -215,7 +215,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 +323,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 +1960,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 +3449,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 +3463,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 +4336,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 +5075,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 +5093,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 +5226,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 @@ -5804,13 +5828,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 +6157,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" @@ -6824,19 +6847,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 +7657,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 +7763,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 +7879,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 +8346,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 +8646,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 +9107,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 +9127,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 +9210,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 +9444,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 @@ -9651,3 +9650,42 @@ msgstr "Ogiltig XML, saknar XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "Hämtar säkerhetskopia från filen '%s'." + +#~ msgid "Public list cloud" +#~ msgstr "Publikt listmoln" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Dessa är de största listorna på %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Ingen har [listat] (%%doc.tags%%) någon ännu." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Var den första att lista någon!" + +#~ 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!" + +#~ msgid "List cloud" +#~ msgstr "Listmoln" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] " 1 person listad" +#~ msgstr[1] " %d personer listade" + +#~ msgid "All subscribers" +#~ msgstr "Alla prenumeranter" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Emblem" + +#~ 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." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 27df6cb7f1..f5b89efe14 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -202,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. @@ -309,8 +308,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 +1937,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 +4333,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 +5064,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 +5083,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 +5216,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 @@ -5806,8 +5830,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 @@ -6806,19 +6829,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 +7659,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 +7881,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 +8341,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. @@ -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 @@ -9661,3 +9662,44 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "Public list cloud" +#~ msgstr "బహిరంగ జాబితా మేఘం" + +#~ msgid "These are largest lists on %s" +#~ msgstr "%sలో అత్యంత పెద్ద జాబితాలు ఇవి" + +#, fuzzy +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." + +#~ msgid "Be the first to list someone!" +#~ msgstr "మీరే ఇతరులను జాబితాలో పెట్టుకునే మొదటివారవ్వండి!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదటగా జాబితాలను సృష్టించేవారు ఎందుకు " +#~ "కాకూడదు!" + +#~ msgid "List cloud" +#~ msgstr "జాబితా మేఘం" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 వ్యక్తి" +#~ msgstr[1] "%d వ్యక్తులు" + +#~ msgid "All subscribers" +#~ msgstr "అందరు చందాదార్లు" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "బాడ్జీ" + +#, fuzzy +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "ఒక వ్యక్తి" +#~ msgstr[1] "%d వ్యక్తులు" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index b4302da954..ee8ff6b00f 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-27 23:26:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +215,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 +327,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 +2006,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 +4462,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 +5238,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 +5258,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 +5395,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 @@ -6002,13 +6026,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." @@ -7067,19 +7090,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 +7919,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 +8148,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 +8625,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 +9397,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 +9417,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 +9751,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 @@ -9959,3 +9960,42 @@ msgstr "Hindi katanggap-tanggap na XML, nawawalang ugat ng XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang '%s'" + +#~ msgid "Public list cloud" +#~ msgstr "Ulap ng pangmadlang talaan" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Ito ang mga pinakamalaking mga talaan sa %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Wala pang [nagtatala](%%doc.tags%%) ng sinuman." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Maging pinakauna sa pagtatala ng isang tao!" + +#~ 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!" + +#~ msgid "List cloud" +#~ msgstr "Itala ang ulap" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 taong naitala" +#~ msgstr[1] "%d mga taong naitala" + +#~ msgid "All subscribers" +#~ msgstr "Lahat ng mga nagpapasipi" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Tsapa" + +#~ 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." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 63e21f34f0..6b940e20eb 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:09+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -216,7 +216,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 +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 з друзями" @@ -1998,6 +1995,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 +4396,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 +5140,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 +5159,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 +5292,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 @@ -5877,13 +5900,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%%), роздивіться " @@ -6903,19 +6925,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 +7755,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 +7985,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 +8460,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 +9225,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 +9245,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 +9572,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 @@ -9784,3 +9785,44 @@ msgstr "Неправильний XML, корінь XRD відсутній." #, php-format msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." + +#~ msgid "Public list cloud" +#~ msgstr "Загальна хмарка списків" + +#~ msgid "These are largest lists on %s" +#~ msgstr "Це найдовші списки на %s" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "Поки що ніхто нікого не додав до [списків](%%doc.tags%%)." + +#~ msgid "Be the first to list someone!" +#~ msgstr "Станьте першим! Започаткуйте новий список!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "" +#~ "Чому б не [зареєструватись](%%%%action.register%%%%) і не створити новий " +#~ "список!" + +#~ msgid "List cloud" +#~ msgstr "Хмарка списку" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "1 користувач у списку" +#~ msgstr[1] "%d користувачів у списку" +#~ msgstr[2] "%d користувача у списку" + +#~ msgid "All subscribers" +#~ msgstr "Всі підписані" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "Бедж" + +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "Один користувач повторив цей допис." +#~ msgstr[1] "%d користувачів повторили цей допис." +#~ msgstr[2] "%d користувачів повторили цей допис." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index ab6708b463..a20554e97c 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:11+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 (r99397); Translate extension (2011-10-07)\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-09-27 23:26:51+0000\n" #. TRANS: Database error message. #, php-format @@ -213,7 +213,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 +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 和好友们" @@ -1928,6 +1925,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 +4244,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 +4954,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 +4972,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 +5102,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 @@ -5665,13 +5692,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%%) 中找一些你感" @@ -6649,19 +6675,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 +7474,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 +7691,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 +8169,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 +8911,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 +8931,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 +9241,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 @@ -9439,3 +9442,38 @@ msgstr "不合法的XML, 缺少XRD根" #, php-format msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" + +#~ msgid "Public list cloud" +#~ msgstr "公开标签云" + +#~ msgid "These are largest lists on %s" +#~ msgstr "这些是 %s 上最流行的标签" + +#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." +#~ msgstr "还没有人拥有 [名单] (%%doc.tags%%)。" + +#~ msgid "Be the first to list someone!" +#~ msgstr "成为第一个创建名单的人!" + +#~ msgid "" +#~ "Why not [register an account](%%action.register%%) and be the first to " +#~ "list someone!" +#~ msgstr "现在就[注册](%%action.register%%)并创建第一个名单!" + +#~ msgid "List cloud" +#~ msgstr "名单云" + +#~ msgid "1 person listed" +#~ msgid_plural "%d people listed" +#~ msgstr[0] "列表中有1人" + +#~ msgid "All subscribers" +#~ msgstr "所有关注者" + +#~ msgctxt "MENU" +#~ msgid "Badge" +#~ msgstr "挂件" + +#~ msgid "One person has repeated this notice." +#~ msgid_plural "%d people have repeated this notice." +#~ msgstr[0] "一人又重复本通知书。 " diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 3df79fdc19..4271e1c4bb 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-10-10 13:38+0000\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..bc84597b00 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:19+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 (r99397); Translate extension (2011-10-07)\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..7c2e4ee991 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:19+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 (r99397); Translate extension (2011-10-07)\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..ceb624e6fe 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a8cc0433b9 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9f9c4c52bb 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+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 (r99397); Translate extension (2011-10-07)\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..b74019c95d 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b831b4f59f 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..078022f3f0 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e99b6e0b35 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f201716adb 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4cafb8ede6 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d68cbe0114 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+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 (r99397); Translate extension (2011-10-07)\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..47d378e31d 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5872e24bbf 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 16cf057041..3b515d59bd 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+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 (r99397); Translate extension (2011-10-07)\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..f6e9b20e3c 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f7e10e9723 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:20+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 (r99397); Translate extension (2011-10-07)\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..e711966889 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3bf49d4aca 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b7da783e65 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ce884dd48 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ee95c0ff3 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-10-10 13:38+0000\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..a3bb0fbf71 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:09+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 (r99397); Translate extension (2011-10-07)\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..664cf56183 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:09+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 (r99397); Translate extension (2011-10-07)\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..ede47d110a 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..609590d622 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 43b68d6f12..e1214f9a63 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8d22a6d8cb 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ebc10c5cb3 --- /dev/null +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -0,0 +1,29 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2f693ef0d1 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f6b72d2a92 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b0362edb03 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ecb9f2861f 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1465ff4f14 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:10+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 (r99397); Translate extension (2011-10-07)\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..dc0bb97112 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..236c9599f7 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a4b26bdb9e 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b4a34b9b39 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3489f61273 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c704c140de 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-10-10 13:38+0000\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..c92b90246a --- /dev/null +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -0,0 +1,117 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9dbf5f1248 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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 +34,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..f094333de6 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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 +36,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..e2534fc1df --- /dev/null +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -0,0 +1,124 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..18e130bc74 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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 +35,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..1833a5f47f 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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 +35,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..273af3830c 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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 +36,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..650511e8f3 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-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 (r99397); Translate extension (2011-10-07)\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..d1b87b3767 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-10-10 13:38+0000\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..4586de1232 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:13+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55ffd7170e 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d4219e701a 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8719a72414 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,13 +14,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2b4aa56cfa 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 5adea62c08..9f844a8b52 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..66853a4fd1 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +48,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" @@ -95,12 +94,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..033344d6cf 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..700eced3be 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:14+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 (r99397); Translate extension (2011-10-07)\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..0d60842eaf 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:14+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 (r99397); Translate extension (2011-10-07)\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..e520d11d3a 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ef6767e624 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:14+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 (r99397); Translate extension (2011-10-07)\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..5755a8aece 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9fa2fadad2 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d210512799 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55ff1a8a66 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c155711040 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index e155120672..21fa4e5904 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5365f0b46c 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0c1fcbac81 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b7a4aa904e 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9622d9c3a5 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-10-10 13:38+0000\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..9bdc7f50a5 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c019c3e80 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Dvdgmz +# Author: Toniher # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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,7 +24,7 @@ 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" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index c91f73ed6d..77498479eb 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f5b29636f0 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index f7c45ccb7a..07a16d7251 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2d8f1fea69 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6cd29e9e9d 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..229acf3338 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..23956d02cf 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..82d77edb03 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5dedbc2357 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6961d68d20 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..594bb8c028 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2ce820c956 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0c6c4e98a0 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-10-10 13:38+0000\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..10011af728 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:18+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 (r99397); Translate extension (2011-10-07)\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..1c1ecefc62 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b525553fd2 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7db452cc9a 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +37,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..ce748d2734 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..517c0d0e4a 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ac451f118f 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8d2ef0d4d4 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 4a68b2cc11..d5582f4d91 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8edab04ce 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6daf219203 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c99defd826 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f345130d19 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ffd58a7ff2 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..83813fb059 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-10-10 13:38+0000\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..51b06756cd 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+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 (r99397); Translate extension (2011-10-07)\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..73837616dd 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c2d8551a2c 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ae3341e873 --- /dev/null +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:18:40+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f454859b06 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5136e521a8 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5eb39372e8 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+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 (r99397); Translate extension (2011-10-07)\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..dd0e6d9f11 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4db9de6437 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+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 (r99397); Translate extension (2011-10-07)\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..76ab5ebc46 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fc7a04bb23 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e40535fcf8 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..caffbf7962 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..babd808803 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-10-10 13:38+0000\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..b85b4f0ec2 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bbc001e889 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c44099e76a 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3604b33792 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..87d9efd4d5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c7940fdbda 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5c9da04bce 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aa14dc35bd 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1c5932e01a 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ecd9d38f30 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..260b7bd09c 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..78385fbda3 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8b37667718 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-10-10 13:38+0000\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..c29299f44f 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..923b15486e 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+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 (r99397); Translate extension (2011-10-07)\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..e656e80832 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+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 (r99397); Translate extension (2011-10-07)\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..04917aa118 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ac6d9125a8 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 14eafff1b9..f2bfbdebf8 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8e79a7bcbb --- /dev/null +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b37994fcd1 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d20c38ab2c 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..abcd2cee3c 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bdaf0384a3 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..496704b28c 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..70e3fc273e --- /dev/null +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,31 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:23+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 (r99397); Translate extension (2011-10-07)\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..5979fab1ee 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a29e85f4af 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d201d6847c 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e6e4c94d78 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-10-10 13:38+0000\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..d24bb3ca7f 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..24b6f750cb 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71d78892bd 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..12d48bae2a 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aea226811c --- /dev/null +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0bd49afb15 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ef9bdaae09 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8cec89332 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eac92bd628 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a8b9e7ac30 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ec86480b9 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6898e0a050 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..312b458acd 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c15c61c838 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-10-10 13:38+0000\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..44d669def5 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..37bca21dd2 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..42fa26cdf4 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 41d8e18ae5..ddbe2315ed 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ffe99a0257 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:27+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 (r99397); Translate extension (2011-10-07)\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..49df8e367c 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,21 +9,21 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-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 (r99397); Translate extension (2011-10-07)\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 +34,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 +60,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 +74,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 +86,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..2027a50069 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8628a889a2 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7c7937ee72 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c04bf0f8d 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fd02496b8b 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5f90c4f7c1 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fa07712ed8 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a9c15c1785 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e2beadc8d9 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-10-10 13:38+0000\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..8755024686 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9da7a4341b 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3597848007 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..11c9461f8c 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b54a1d8a37 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..47831582bd 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d4070145d 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7dcdd9ce76 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 4e51503564..0d8d29c777 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:30+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 (r99397); Translate extension (2011-10-07)\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..c3cc83ce69 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..160aca48d1 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4cb9a5d333 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..11ecd093ea 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-10-10 13:38+0000\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..66cf2afdf7 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+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 (r99397); Translate extension (2011-10-07)\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..4fa86b9f66 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e5c75ac581 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9aa7ed979f 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c995d40b04 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3bf79af85d 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1a792da29a 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..20541c63cc --- /dev/null +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eb19470a20 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e860ecb445 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a27657a68a 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dabf123edd 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5c25c1765d 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c856784522 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3b3a873c3a 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55f355ae16 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:32+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 (r99397); Translate extension (2011-10-07)\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..cdff4d92b5 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..393b781a95 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0a0565a38d 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ea1ff76e69 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-10-10 13:38+0000\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..8efd51c379 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..757b1507ba 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..63ea9ddca0 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +61,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..510ae3cc89 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blog\n" 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..6b5664e02e --- /dev/null +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -0,0 +1,95 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c89a44984d 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1207fa90e5 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fadcd01712 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..64a9ec3dac 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-10-10 13:38+0000\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..e19750f0c4 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f22da4c6d8 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3814336115 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d4d1a6cca3 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e35347b445 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d368b76bdd 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d1363005db 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4890f6403e 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3d00549917 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 993475ed02..ee08313495 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-10-10 13:38+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..1054c54913 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +35,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 +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). -#, 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 +192,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..4e261ed007 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +40,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 +53,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 +62,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 +133,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 +191,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 +269,7 @@ 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\"." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "L'adreça d'interès %1$s (avís %2$d) no té adjuncions." diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 64af86e791..04c3d296fd 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +62,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 @@ -270,3 +264,6 @@ msgstr "Lesezeichen erstellt" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Hole Backup von Datei „%s“." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "Lesezeichen %1$s (Notiz %2$d) hat keine Anhänge." 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..2d1e8aa945 --- /dev/null +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -0,0 +1,266 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-30 09:57:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 "" +"Erregistratutako 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." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "%1$s lastermarkak (%2$d oharra) ez du eranskinik." diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index ef2bb2bc59..11fa559418 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,13 +14,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +66,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 @@ -276,3 +270,6 @@ msgstr "Signet publié" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Obtention de la sauvegarde depuis le fichier \"%s\"." + +#~ 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." diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index e7f9c586a8..c29e15a792 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +62,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 @@ -272,3 +266,6 @@ msgstr "Marcapaginas placiate" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Obtene copia de reserva ex file \"%s\"." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "Le marcapaginas %1$s (nota %2$d) non ha annexos." diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 1aaa023a2a..278316195a 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:38+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +61,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 @@ -266,3 +260,6 @@ msgstr "" #, php-format msgid "Getting backup from file \"%s\"." msgstr "ファイル \"%s\" からバックアップを取得する" + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "ブックマーク %1$s (つぶやき %2$d) は添付ファイルがありません" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index c1b7f23333..26f4a69d03 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +61,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 @@ -269,3 +263,6 @@ msgstr "Одбележувачот е поставен" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Земам резерва на податотеката „%s“." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "Одбележувачот %1$s (забелешка %2$d) нема прилози." diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index d499f02c1f..e2b9fc2553 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +62,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 @@ -271,3 +265,6 @@ msgstr "De bladwijzer is geplaatst" #, php-format msgid "Getting backup from file \"%s\"." msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "De bladwijzer %1$s (%2$d) heeft geen bijlagen." diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index d0edcb9f6c..49ccc7976f 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:38+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +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 "" - #. 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..fea671ed80 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +62,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 @@ -274,3 +268,6 @@ msgstr "Ipinaskil na ang pananda." #, php-format msgid "Getting backup from file \"%s\"." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang \"%s\"." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "Ang panandang %1$s (pabatid na %2$d) ay walang mga kalakip." diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index e7d54fb3ce..77f6679aa0 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +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 @@ -268,3 +262,6 @@ msgstr "Закладку збережено" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Отримання резервної копії файлу «%s»." + +#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." +#~ msgstr "Закладка %1$s (допис %2$d) має не вкладень." diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 8fa2840a04..597b2a3cdf 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-10-10 13:38+0000\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..2b3cdde6ed 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d12253bd3b 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4fc2251ced 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f7691ba0f0 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..001119854b 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..af5ddc926d 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8360de9dce --- /dev/null +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1dc3f4d67b 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7a4b6116f5 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1baa47c0d7 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..25533691e2 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d547372aff 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0400762c7c 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..78062d5b79 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d1e04fe959 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bc8ab052c8 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..899feb8367 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..da92f8b52a 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-10-10 13:38+0000\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..c579382893 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:41+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 (r99397); Translate extension (2011-10-07)\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..ba1c6d750f 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..838b486748 --- /dev/null +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,68 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..abc9d30530 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a13e6cc3c1 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:41+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 (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 77ec673602..71a833ac8c 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..672aff2d57 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:41+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 (r99397); Translate extension (2011-10-07)\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..8506023089 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6a597237cf 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..acd1ff8f5d 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3779c34458 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cf6958f323 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..039bad369c 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d51538f84c 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..110884f28e 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd3af706e9 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-10-10 13:38+0000\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..4286e2ac20 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7dc0b22e00 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..44c6c2c6a5 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index b4c4ddc1b1..f249844d27 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d4f125a392 --- /dev/null +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,34 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..985b455a85 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2aa332a1de 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..074e3cfa97 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:43+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 (r99397); Translate extension (2011-10-07)\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..c9e9f777b4 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6da2f5b51c 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..2142ecdb7e 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4f8f3404f3 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 07bae3ce15..73765b989f 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71ca9c56fc 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1fbef88af2 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..db7a1bcc75 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-10-10 13:38+0000\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..90f005377d 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..92acc67de3 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6548041bee --- /dev/null +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -0,0 +1,27 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..be07633eca 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7c1f64adfd 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..25dc220e80 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c46ea3186a 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..cebcba7f2a 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b0f46ccb78 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:44+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 (r99397); Translate extension (2011-10-07)\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..eb9610a0b6 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:44+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 (r99397); Translate extension (2011-10-07)\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..1e8b496351 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..87105ecac9 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-10-10 13:38+0000\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..87e9e6662d 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:44+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 (r99397); Translate extension (2011-10-07)\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..bded2b3717 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cf8bfb9822 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4431127ff2 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bab0fe2018 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8bc9488943 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d05e1119aa 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd93968a35 --- /dev/null +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1d34a9a36f 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..89f8880576 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2dd9b1e87b 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3e1853aaaf 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e3f523c6bb 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..05c924e2e9 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..294f6ce135 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..69896e0992 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b5fecc3cfb 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b95d36476c 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..63c8292d81 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd309ce91a 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..973791832a 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..aad8e80499 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-10-10 13:38+0000\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..b1650961d6 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb00406fa8 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +84,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 +111,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 +118,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..d0eda96bc9 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 359bba9bad..0e7f87faa9 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:48+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 (r99397); Translate extension (2011-10-07)\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..70db091860 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index d75658a83b..e496582c4e 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4323c3ea91 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:48+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 (r99397); Translate extension (2011-10-07)\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..c0f1c5d77a 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7482861155 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..53099a318c 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3330961027 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..28b2786687 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c437ece144 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-10-10 13:38+0000\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..6758567950 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:49+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 (r99397); Translate extension (2011-10-07)\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..6b218876f2 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6ce1884db8 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f65f17926e 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3f5bdca58a 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7f349b4b99 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f1f3e0c6d7 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5fa0443ea1 --- /dev/null +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c54298de6e 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f75c2a83e2 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..323b8b3efa 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..621d85e06b 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d9be4f41e2 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e464513d09 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a8e876aa9a 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f3d30134bf 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f58d49013d 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..91282942f8 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4044070a00 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..80291144fb 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bed5a2f6d0 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..87663f0b8c 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-10-10 13:38+0000\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..e8907de1b0 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b75d11e198 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..101d717b93 --- /dev/null +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -0,0 +1,44 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..360521bdd9 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c5b59d44a3 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..efe3894174 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f964423222 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e43e86d4b1 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9201c4863c 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ed7faabab8 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2784836c0d 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bd56dbe3d9 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..276afe63f9 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a3938d1e5b 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fd1e836499 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index e8dcea6d4b..40c3e37c5c 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-10-10 13:38+0000\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..a7315f1153 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2f25b66c8f 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3edcf921b2 --- /dev/null +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..196fe11016 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5df6f05ae9 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..56f9dd3103 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b82edb1c1f 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5aa1b74bd7 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a41f7d2aea 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c740976f4c 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a3b6b236bd 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-10-10 13:38+0000\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..1ca615a4bc 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:53+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 (r99397); Translate extension (2011-10-07)\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..1d469b73e6 --- /dev/null +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,81 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:53+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 (r99397); Translate extension (2011-10-07)\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..8882082138 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..621f82dbe3 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f1820fab30 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..40a0eb3ef0 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e45d8dfb5a 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aacfb4482a 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4b6c46c8fe 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-10-10 13:38+0000\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..bb96cf7421 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:54+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 (r99397); Translate extension (2011-10-07)\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..e11fbb0bab 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:54+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 (r99397); Translate extension (2011-10-07)\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..22cc1fbe0b 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:54+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 (r99397); Translate extension (2011-10-07)\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..94324884a0 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab4abcfd56 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..746e81afd3 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ec2a7fda2f 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e9636136ee --- /dev/null +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3d9fb31d22 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7c60747c13 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..06914d1ebc 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c28ed4ebac 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+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 (r99397); Translate extension (2011-10-07)\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..9de6a91560 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b6e8c30619 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9f4aa22e58 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..573d8bb530 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4231731021 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..056fdf6c8c 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..35e06e248e 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d8c26c4f7 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..09e31cd42f 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c17aaf3419 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-10-10 13:38+0000\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..41135a9ba0 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:56+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 (r99397); Translate extension (2011-10-07)\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..d8e36cb77b 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d147c4f971 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fa3ea9357f 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bde3619ef2 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index c33f8fc8b7..b0441145ec 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e28f5d3ffb 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c83431d54c --- /dev/null +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e557d7b235 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9d0ac376e3 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8e93ce5468 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..23c87ff483 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..86cefb45f3 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4af3f8b2a4 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d492e8b9a9 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..934ac3fb0a 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3a256523bc 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0e73bc9b90 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e5b71e1554 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab16161ed4 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3040fa056f 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..94699632ee 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-10-10 13:38+0000\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..c19934d29a 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:59+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 (r99397); Translate extension (2011-10-07)\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 +42,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..6495b1fb45 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..43c7534e22 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +25,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 +37,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 +62,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 +77,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 +85,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 +107,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 +178,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..f89b50e027 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:38: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 34b9cb2d42..0290a4deaf 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +188,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..c733957a97 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+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 (r99397); Translate extension (2011-10-07)\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..6e17f051e7 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..476ba02197 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..76ac1973fe 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0a024b4c95 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:00+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 (r99397); Translate extension (2011-10-07)\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..b15c88ad4c 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8c415342e3 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f13fa0451d 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-10-10 13:38+0000\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..c464a23822 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e93d5fb5a4 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index e270068e60..b72d965436 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..604bbdd3e9 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6537113ad8 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fe9b607749 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6f1a2d6b75 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-10-10 13:38+0000\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..8dd33b50cf 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:02+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 (r99397); Translate extension (2011-10-07)\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 +24,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..a210264718 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index b907089b77..d409e090d9 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..24cb90a9cf 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d6c7fcb890 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4aefa53aea 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab90cc8a83 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/Event.pot b/plugins/Event/locale/Event.pot index 3afaea6aaf..9b037481c3 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-10-10 13:38+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..096cec1a40 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:07+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -421,12 +421,8 @@ msgstr "المكان:" msgid "Description:" msgstr "الوصف:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "الحضور:" +#~ msgid "Attending:" +#~ msgstr "الحضور:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "نعم: %1$d لا: %2$d ربما: %3$d" +#~ msgid "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..124719b519 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -413,12 +413,5 @@ msgstr "Lec'hiadur :" 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" +#~ 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..f1d455469c 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +68,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 +88,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 +115,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 +272,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 +333,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. @@ -408,12 +408,8 @@ msgstr "Ubicació:" msgid "Description:" msgstr "Descripció:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Assistents:" +#~ 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" +#~ 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..3f4d57d361 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -418,12 +418,8 @@ msgstr "Örtlichkeit:" msgid "Description:" msgstr "Beschreibung:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Teilnehmende:" +#~ 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" +#~ 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/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index d1aca25ab5..2bb40fcc8e 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +28,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." @@ -422,12 +423,8 @@ msgstr "Lieu :" msgid "Description:" msgstr "Description :" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Participants :" +#~ 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" +#~ 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..f3d615d2c5 --- /dev/null +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -0,0 +1,415 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-09-11 15:10:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 "" + +#. 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 "" + +#. 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 "" + +#. 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:" + +#~ msgid "Attending:" +#~ msgstr "Participantes:" + +#~ msgid "Yes: %1$d No: %2$d Maybe: %3$d" +#~ msgstr "Si: %1$d Non: %2$d Quizais: %3$d" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 53ab193d29..9c767055c8 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -418,12 +418,8 @@ msgstr "Loco:" msgid "Description:" msgstr "Description:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Presente:" +#~ msgid "Attending:" +#~ msgstr "Presente:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Si: %1$d No: %2$d Forsan: %3$d" +#~ msgid "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..228cac3ffc 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -418,12 +418,8 @@ msgstr "Место:" msgid "Description:" msgstr "Опис:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Присуство:" +#~ msgid "Attending:" +#~ msgstr "Присуство:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Да: %1$d Не: %2$d Можеби: %3$d" +#~ msgid "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..7a02e59a24 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:08+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -418,12 +418,8 @@ msgstr "Lokasi:" msgid "Description:" msgstr "Keterangan:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Hadir:" +#~ msgid "Attending:" +#~ msgstr "Hadir:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" +#~ msgid "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..8f66c8aaff 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -422,12 +422,8 @@ msgstr "Locatie:" msgid "Description:" msgstr "Beschrijving:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Aanwezig:" +#~ msgid "Attending:" +#~ msgstr "Aanwezig:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" +#~ msgid "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..7daee99e8f 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +407,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..ad7e2805be 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -421,12 +421,8 @@ msgstr "Kinalalagyan:" msgid "Description:" msgstr "Paglalarawan:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Dadalo:" +#~ 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" +#~ 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..154b7c0ccd 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:42+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -421,12 +421,8 @@ msgstr "Розташування:" msgid "Description:" msgstr "Опис:" -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Присутні:" +#~ msgid "Attending:" +#~ msgstr "Присутні:" -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Так: %1$d Ні: %2$d Можливо: %3$d" +#~ msgid "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..4abb445555 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-10-10 13:38+0000\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..f88e989ad4 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:11+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 (r99397); Translate extension (2011-10-07)\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..bb6a7a216c 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..66cac10d65 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +24,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 +61,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 +91,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 +125,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 +148,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..5749077d00 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 7da86712f3..effdf16f06 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..612b109aa5 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..716b719808 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4515f2977d 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d480f92596 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cfc4706f6b 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..be0d78b525 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:13+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c86b8f4f4a 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2d0b0db8a9 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5506ebab0e 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-10-10 13:38+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..ff93b1124f 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:49+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:16+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +155,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..d5f3a92b73 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +153,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..d4f9c1190e 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:49+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +157,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..7971fd318c 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +160,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 "" + #. 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..19f49b7487 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +164,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..c7d1718b86 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:17+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +150,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..e4e5efed18 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +156,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 "" + #. 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..6a2c1e8a9a 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:17+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +158,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..2b32d3748a 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +154,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/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 86a31453e8..4056cc99d7 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +158,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 "" + #. 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..10fb0022a9 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +159,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..0647712fe2 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +156,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..57bd2bd26c 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +160,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..647e93d2e4 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-10-10 13:38+0000\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..3426f4f8bc 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..57b95524b3 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1a3eae377c 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ab8869227 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fe5e4b47e7 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d2d62ad1a0 --- /dev/null +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1f4b89c51e 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..45897f15ed 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ee1db1e66 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c77112aeb 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..33881ca947 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0890f25600 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d16531e417 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e773cbd161 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab9f40415f 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f29976a363 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fa5d871905 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7c636749cb 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a706796da0 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-10-10 13:38+0000\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..eaa19cfa5c 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d08d22655a --- /dev/null +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:20+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 (r99397); Translate extension (2011-10-07)\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 "" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 520eda03d6..3c2926a9d6 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 5e7c551540..54ee1ea877 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5a3edd446c 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5bf7f1fb4d --- /dev/null +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,32 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab3b8a80bf 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..806e6cd81c 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e7048e7656 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fb621af7ec 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..79bc09b09f 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e455559898 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8df7a1ca20 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0763822e1b 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a241f31814 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-10-10 13:38+0000\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..3ddcdfc2ac 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0b303682c3 --- /dev/null +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,34 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..332a65e360 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..34a20d044f 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..567c003c48 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71883adb36 --- /dev/null +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,36 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..189725af02 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c1328c8edd 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e8b7334c7a 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+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 (r99397); Translate extension (2011-10-07)\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..3763c51f72 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..60698da475 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3dfafe4740 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7c9f254b84 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..011ab55c7b 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8ccbe41b35 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eccef0b18f 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-10-10 13:38+0000\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..315477a0f4 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a85f37e1cc 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9107334188 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:23+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 (r99397); Translate extension (2011-10-07)\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..db3026b0a8 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index f4dff8515f..a130ae7979 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3c4b04181f 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..74dd7b0963 --- /dev/null +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2700de3709 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..285aae35b0 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a470796ffe 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e10a3598e1 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a4e5e2cf37 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..439f91ce80 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4a030bc4b8 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:24+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 (r99397); Translate extension (2011-10-07)\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..0deec8fef1 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..871951e7a8 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..95af920a56 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..797cf938a8 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3b6e3c53a5 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..12347fe3e2 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-10-10 13:38+0000\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..afcd2947c6 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,37 +9,37 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:22+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 (r99397); Translate extension (2011-10-07)\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..ed0bc1edb6 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 6b4589cb02..c36892e9f7 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:22+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 (r99397); Translate extension (2011-10-07)\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..a0ab4f32c7 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..99e0effa00 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f2693dd719 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9f8cfa8b27 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..567d0cda5a 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4b76c8edb3 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b68f6e1eca 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3648dcd7d2 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-10-10 13:38+0000\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..f5080a9476 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..44f4abbeee --- /dev/null +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0ac4e42b58 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4a20b3375b 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..132a1c5769 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0e936957d9 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ee850e0d6a --- /dev/null +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6404f8ad61 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..12eed9e0a8 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d3c4cb3433 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6e29944326 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..089c943889 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4597b1a31d 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..75cbe1f5f8 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a477d7e322 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1c4fc2d5ff 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..040346747c 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:26+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 (r99397); Translate extension (2011-10-07)\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..84cb9d108e 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8e5c86fddf 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8d05f5f9bc 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..909f608978 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-10-10 13:38+0000\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..1e06d8fdb4 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:26+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 (r99397); Translate extension (2011-10-07)\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..540818eff1 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f2bd1d4bdf 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index a15b520aad..52193bb033 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3ef69fe959 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,22 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:26+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 (r99397); Translate extension (2011-10-07)\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..bd3bf558b3 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7fce2485d4 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..82c15c1a69 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2e06970a08 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eb15038e9f 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2235c41f68 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a5f57fa4d8 --- /dev/null +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6a5013495e 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..546008382c 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..88b6087366 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb4e2ec71f 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-10-10 13:38+0000\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..861ada4739 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ba6cbdc9d3 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0869478f27 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..040b085295 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9ae0f1c94f 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 7c6e46cfc7..f585d76ce4 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e787608b1a 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fd6f099d7a 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..619bec40a4 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e8ccdb3b5c 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7037fcf4d3 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:28+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 (r99397); Translate extension (2011-10-07)\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..c0c7951b16 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..45aad74b4a 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..de8725b431 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-10-10 13:38+0000\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..b2b56eda62 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +38,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 +47,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 +123,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 +164,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..231d57eac8 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +23,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 +44,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 +78,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 +123,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 +135,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 +156,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 +172,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 +210,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 +286,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..60acd62b4a 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 635bf2c206..3c81562049 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..feb2c822d8 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..62822a7a70 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d6a6e046e1 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d600dfd21c 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:32+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 (r99397); Translate extension (2011-10-07)\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..f1a22ee864 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f403a23209 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c2ff6488df 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-10-10 13:38+0000\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..2bf785a5e4 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..67e5fe806d --- /dev/null +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -0,0 +1,55 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cd7f7302b0 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 9dc4bb7f7b..0f1e20725b 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a1c81d8431 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b838edaa48 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..002796d6af 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bdbf642911 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..77aac93634 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..abd9d6f231 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2157ea016d 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f030041487 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..237a119203 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..10e86865c2 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-10-10 13:38+0000\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..1648907a98 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8c3584f5f9 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6be11a56bb --- /dev/null +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+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 (r99397); Translate extension (2011-10-07)\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..0cf0cb47ad 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..171cebb439 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..31892219e8 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..06a76e3285 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ae37fa2b74 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5da00ecdd1 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7e6a830547 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8dc80182b 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ddca4ee47b 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b10b0f1482 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-10-10 13:38+0000\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..6d2f71332e 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ddeaf46539 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index dd7313ab2d..5a225a037a 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..af8b4e46a9 --- /dev/null +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..265c377d0c 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..061261f14a 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..be5ea82b78 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71667d2686 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..22da16ad62 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f3af427592 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..487db6ffff 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ae3bbaea32 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..f93837e7c5 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..15a2b3f724 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..545f9dcb95 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..269a64bcee 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fd4fcad767 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-10-10 13:38+0000\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..f15f68e9e9 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4599e63f0d 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1d3a20f931 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ed9b170b1b 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1e70fc235a 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..96e7f67da6 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:37+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 (r99397); Translate extension (2011-10-07)\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..c962c4f8fe 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb7a8329fc 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b1135ffdb1 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-10-10 13:38+0000\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..b5a570c35e 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..471b61849d 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..60ab2c950c 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c0a8d0a439 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5a2244d3c4 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..64edd1f5f1 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..76cefe3c0c 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..457c30c38c 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-10-10 13:38+0000\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..b7676213f3 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c303ae2e19 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..60abd1ce82 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..87bb44c814 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..48e3ba4fc1 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ea7ae1e8b3 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a98cb71ea6 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eff560eb7f 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-10-10 13:38+0000\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..18b0a7d72b 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a456127fad 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..008300fe11 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..91272d2999 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c25672fcd 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ec850e778a 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c80a95ac1a 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..646b716b32 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-10-10 13:38+0000\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..645723c49a 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e0ce6ff9f5 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index a6fb5f96f1..d88b549d18 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fcfb2be679 --- /dev/null +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -0,0 +1,34 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c1ab54b217 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f7637b8090 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..836d052924 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cbf4de5498 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:41+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 (r99397); Translate extension (2011-10-07)\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..f76e32e2ff 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..90d29f6f7b 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bfbd5af484 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c10bdd9204 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eaaf938592 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:41+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 (r99397); Translate extension (2011-10-07)\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..3c6f29714f 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b6a07617aa 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bb750b8738 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 3a561b4f4c..0384e0ad81 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-10-10 13:38+0000\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..dd5b520761 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f2360af027 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1db857ff09 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4443fa7f97 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..33704e76d1 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..227502d470 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:44+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 (r99397); Translate extension (2011-10-07)\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..98315bd6f4 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:44+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 (r99397); Translate extension (2011-10-07)\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..884a753c1a 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index fa824fbd24..91d8aa6e4d 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-10-10 13:38+0000\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..3f50a7ad25 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..64e01c4965 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c861a796d8 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4f25b7833c 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..be578433fb 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8763bfe7ca 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8482dac8e6 --- /dev/null +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -0,0 +1,40 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dfb4e431aa 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..52dfe01745 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cfd34ee240 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:43+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 (r99397); Translate extension (2011-10-07)\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..a956391850 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ca53443cbb 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..2712dd3cbb 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c5245d9e3b 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1702fd3924 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..621d34ff99 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e661dd6aaa 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9c9b4f314a 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..5f199a7ebc 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-10-10 13:38+0000\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..56c547043c 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f4cc1100d4 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..edcdc07e2f 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..066556d30b --- /dev/null +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9c27ca1872 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5ba4df4d0f 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..972ec4b045 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2cba1f0f38 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b42191d76a 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1763bafd13 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4a7d928f49 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c270fd745f 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..df58bc629f 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a20fe10a98 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-10-10 13:38+0000\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..88c69e17ad 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9fa95baa54 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:46+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 (r99397); Translate extension (2011-10-07)\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 +45,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..2e6989b80b 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f35b5e95e1 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:46+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 (r99397); Translate extension (2011-10-07)\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..5be76eface 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e6a07b87ea 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:46+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 (r99397); Translate extension (2011-10-07)\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..91c641a1c7 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:46+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 (r99397); Translate extension (2011-10-07)\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..fe1c8a2d07 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+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 (r99397); Translate extension (2011-10-07)\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..782eb21c0e 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..242143413a 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+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 (r99397); Translate extension (2011-10-07)\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..5837dcbc32 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..21bbb46a03 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..bb18a96081 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5ea3c3baed 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d1322b8c0d 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+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 (r99397); Translate extension (2011-10-07)\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..fe9e6027f8 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+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 (r99397); Translate extension (2011-10-07)\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..7bf873f5bc 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+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 (r99397); Translate extension (2011-10-07)\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..9f226ea1e7 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e183c72829 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7e4ed876fc 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8121ec72ef 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-10-10 13:38+0000\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..3f07515c88 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0724908bec 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb820bb646 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:48+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 (r99397); Translate extension (2011-10-07)\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..dc19bf0622 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d06b4b4536 --- /dev/null +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1e4575bde9 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0681f468f6 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a3aaa22343 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9f209709e2 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8bd2faf514 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b602ad1e1d 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2a62a7d334 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:48+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 (r99397); Translate extension (2011-10-07)\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..d09edd4b1d 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..98ed9bf7a8 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b4b574642e 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9b9472ee2a 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..68834ac3fd 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d595822123 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-10-10 13:38+0000\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..72e66b2155 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..99ff0b187f 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..119606b7d2 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..572ef95c39 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2728ac513e --- /dev/null +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..32bd4947f4 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6d0d6d298b 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bc0e276515 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b2c4edd146 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:49+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 (r99397); Translate extension (2011-10-07)\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..0b796793fc 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9b78ad5d12 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd26a9aa65 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..80eceaa927 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b1fd9e787c 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e1f0a481bc 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e8f98b5326 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3de7178644 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8376a5227b 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..09ab269dbc 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-10-10 13:38+0000\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..0cfc3fbc07 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e95fd63441 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ff6685e60 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..836ba7dd8b 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e6d7ee368c 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4759ef1314 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0bbc7959c4 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..354a057207 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..122fa5097e 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-10-10 13:38+0000\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..645ddc3838 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6eecff8728 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e614089e72 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d5d0977729 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..05f07bd7c4 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ca93da611f 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9bd26c9638 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bbcee71be7 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:52+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 (r99397); Translate extension (2011-10-07)\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..4394001778 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3abc0e6629 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..16188c04f5 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 9fabd1e1d5..3f7ec4ff75 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-10-10 13:38+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..62d9f14c2a 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:53+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 (r99397); Translate extension (2011-10-07)\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 +23,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 +36,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..f3c8f77a4a 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:53+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 (r99397); Translate extension (2011-10-07)\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..c3d912818c 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 2aff2457f6..bd2cc8f6d4 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..16bf090f29 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:53+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 (r99397); Translate extension (2011-10-07)\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..edd766776b 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9a96ca386a 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c9d281f7f1 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..297e4806c5 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fcd0ba45be 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bdab938b68 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:53+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 (r99397); Translate extension (2011-10-07)\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..92525411bf 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..150c139e2e 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..054b84def5 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9fef507cd6 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-10-10 13:38+0000\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..82fdccb417 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1307b4b737 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fdb5e5be62 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..167646ba60 --- /dev/null +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -0,0 +1,29 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:54+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 (r99397); Translate extension (2011-10-07)\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..7edca8eb05 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ea9e89c730 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cce703b3e5 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d4386164f 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9851381a45 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..61600491df 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5f4a6efd71 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c1c50418e6 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6c97085ebc 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-10-10 13:38+0000\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..d60e1b946f --- /dev/null +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -0,0 +1,57 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d692ef1aba 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f2a6620ba4 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8b4d969adf 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1880629969 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2483ecbad7 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e418f9b6a6 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb0a084476 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..889b6ec628 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-10-10 13:38+0000\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..ffd99413f1 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9f2e20e509 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d95303a70 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5c9dc267ce --- /dev/null +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -0,0 +1,26 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..21a720e557 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a75f131c60 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b7d2eb1f8a 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b640bb9ac9 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aceae661b2 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:57+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 (r99397); Translate extension (2011-10-07)\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..7d6a3ef24a 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dac01ff7fa 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..038cf8a4ab 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-10-10 13:38+0000\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..0bb51170d8 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:57+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 (r99397); Translate extension (2011-10-07)\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..5c734a4213 --- /dev/null +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -0,0 +1,51 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4a38842e23 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index f8f6427521..35b0746569 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1ac7c9adee 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8d6ac2a5bc 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f5fb30e0fd 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e1fc2d8811 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..31748930c7 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..03e4e34889 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-10-10 13:38+0000\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..8505acab40 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:59+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 (r99397); Translate extension (2011-10-07)\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..ef22db1c48 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..41f4d4d70b 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 1d43e2f092..641795d4ef 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b9a33e2b3c 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1e937aeae2 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1bd6f056e4 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..da1419a1e1 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1a20e1a657 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39:59+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 (r99397); Translate extension (2011-10-07)\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..7c524b3103 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0723aee932 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1e908e9700 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..03ac1ac0bf 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5b3d5cdc53 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:39: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1950f2a959 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-10-10 13:38+0000\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..7c0404cf9c 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd32e97999 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index 5f86fb24df..3d15919dc4 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1456de5e0d 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a8850a5d49 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c626a72668 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-10-10 13:38+0000\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..dd24c63f0b --- /dev/null +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -0,0 +1,917 @@ +# Translation of StatusNet - OStatus 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 - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:26+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 (r99397); Translate extension (2011-10-07)\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 "" + +#. TRANS: Title for unlisting a remote profile. +msgctxt "TITLE" +msgid "Unlist" +msgstr "" + +#. 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 "" + +#. TRANS: Title for unliking a remote notice. +msgid "Unlike" +msgstr "" + +#. TRANS: Success message for remove a favorite notice through OStatus. +#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. +#, php-format +msgid "%1$s no longer likes %2$s." +msgstr "" + +#. 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 "" + +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" +msgstr "" + +#. TRANS: Plugin description. +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" + +#. TRANS: Client exception. +msgid "Publishing outside feeds not supported." +msgstr "" + +#. TRANS: Client exception. %s is a mode. +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "" + +#. 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 "" + +#. TRANS: Client exception. %s is sync or async. +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "" + +#. TRANS: Client exception. %s is the invalid lease value. +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" + +#. TRANS: Client exception. %s is the invalid hub secret. +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "" + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic \"%s\". User does not exist." +msgstr "" + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic \"%s\". Group does not exist." +msgstr "" + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic %s; list does not exist." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "Sobrenom de l'usuari" + +#. TRANS: Field title. +msgid "Nickname of the user you want to list." +msgstr "" + +#. TRANS: Field label. +msgid "Profile Account" +msgstr "Compte del perfil" + +#. TRANS: Field title. +msgid "Your account id (for example user@identi.ca)." +msgstr "" + +#. TRANS: Client error displayed when remote profile could not be looked up. +#. TRANS: Client error. +msgid "Could not look up OStatus account profile." +msgstr "" + +#. TRANS: Client error displayed when remote profile address could not be confirmed. +#. TRANS: Client error. +msgid "Could not confirm remote profile address." +msgstr "" + +#. 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 "" + +#. TRANS: Server exception. %s is a feed ID. +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "" + +#. TRANS: Client exception. %s is an invalid feed name. +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "" + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Field label. +msgid "Join group" +msgstr "Uniu-vos 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 "" + +#. 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 "" + +#. TRANS: OStatus remote group subscription dialog error. +msgid "Already a member!" +msgstr "Ja en sou 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 "" + +#. 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 "" + +#. TRANS: Client exception thrown when an undefied activity is performed. +#. TRANS: Client exception. +msgid "Cannot handle that kind of post." +msgstr "" + +#. TRANS: Client exception. +msgid "In reply to unknown notice." +msgstr "" + +#. TRANS: Client exception. +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" + +#. TRANS: Client exception. +msgid "To the attention of user(s), not including this one." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Client exception. +msgid "Unidentified profile being unlisted." +msgstr "" + +#. TRANS: Client exception. +msgid "This user is not the one being unlisted." +msgstr "" + +#. 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 "" + +#. TRANS: Client exception. +msgid "Cannot handle that kind of object for liking/faving." +msgstr "" + +#. 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 "" + +#. TRANS: Error text displayed when trying to subscribe to a list already a subscriber to. +msgid "You are already subscribed to this list." +msgstr "" + +#. TRANS: Page title for OStatus remote list subscription form +msgid "Confirm subscription to remote list" +msgstr "" + +#. TRANS: Instructions for OStatus list subscription form. +msgid "" +"You can subscribe to lists from other supported sites. Paste the list's URI " +"below:" +msgstr "" + +#. 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 "" + +#. TRANS: Client error. +msgid "Cannot read profile to set up group membership." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Client error displayed when referring to a non-existing remote list. +msgid "Cannot read profile to set up list subscription." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "Uneix" + +#. 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 "" + +#. 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 "" + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#. 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 "" + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "" + +#. TRANS: Server exception. +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" + +#. TRANS: Server exception. +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: Two or more IDs set for %s." +msgstr "" + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: All IDs empty for %s." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "" + +#. TRANS: Server exception. +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Exception. +msgid "Local group cannot be referenced as remote." +msgstr "" + +#. TRANS: Exception. +msgid "Local list cannot be referenced as remote." +msgstr "" + +#. 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 "" + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not save profile for \"%s\"." +msgstr "No es pot desar el perfil de \"%s\"." + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not save OStatus profile for \"%s\"." +msgstr "" + +#. TRANS: Server exception. +msgid "Could not store HTML content of long post as file." +msgstr "" + +#. 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 "" + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "No URI protocol for profile: %s." +msgstr "" + +#. TRANS: Client exception. %s is a HTTP status code. +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "" + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "" + +#. TRANS: Exception. +msgid "Unable to locate signer public key." +msgstr "" + +#. TRANS: Exception. +msgid "Salmon invalid actor for signing." +msgstr "" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +msgid "This method requires a POST." +msgstr "" + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml". +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "" + +#. TRANS: Client error. +msgid "Salmon signature verification failed." +msgstr "" + +#. TRANS: Client error. +msgid "Salmon post must be an Atom entry." +msgstr "" + +#. TRANS: Client exception. +msgid "Unrecognized activity type." +msgstr "Tipus d'activitat no reconeguda." + +#. TRANS: Client exception. +msgid "This target does not understand posts." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand follows." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand unfollows." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand favorites." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand unfavorites." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand share events." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand joins." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand leave events." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand list events." +msgstr "" + +#. TRANS: Client exception. +msgid "This target does not understand unlist events." +msgstr "" + +#. TRANS: Exception. +msgid "Received a salmon slap from unidentified actor." +msgstr "" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index f20a344d63..3a8c0ce836 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 64a1eb534e..461a0fe37b 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +155,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..402e3942e1 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71575ff58c 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:27+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 (r99397); Translate extension (2011-10-07)\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..d21b7ec99e 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dd75b75a08 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f11da91d0f 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..de94ad6fd2 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot new file mode 100644 index 0000000000..0112cfd30a --- /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-10-10 13:38+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/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index a51ada8d81..518f912f5b 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-10-10 13:38+0000\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..a35cd37d7e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e55257a450 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..93db00fc98 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..45785d9d5e 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:01+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 (r99397); Translate extension (2011-10-07)\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..3a1bcb9f8f 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6a4cc5bb3b --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:01+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 (r99397); Translate extension (2011-10-07)\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..0c37fb53bc 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:01+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 (r99397); Translate extension (2011-10-07)\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..008a8a28d4 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55926ee67b 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4b85ae41cd 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ab5e67981f 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5a519e58ca 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+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 (r99397); Translate extension (2011-10-07)\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..e2f1345edb 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5b5231eaea 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..accd331ee7 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7b1597bb32 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 8be06ca790..f4ac247a0a 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-10-10 13:38+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..14c16ccd8c 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:09+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +31,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 +131,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 +558,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." @@ -626,3 +616,10 @@ msgstr "لُج تلقائيًا في المستقبل؛ هذا الخيار لي msgctxt "BUTTON" msgid "Login" msgstr "لُج" + +#~ msgid "" +#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " +#~ "service." +#~ msgstr "" +#~ "* [الهوية المفتوحة](%%doc.openid%%) - تعرف على الهوية المفتوحة وكيفية " +#~ "استخدامها على هذه الخدمة." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index f1372a918f..37ba85b852 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:09+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +33,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 +48,6 @@ msgid "Continue" msgstr "Continua" #. TRANS: Button text to cancel OpenID identity verification. -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" @@ -58,10 +57,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 +77,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 +94,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 +108,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 +118,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 +128,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 +141,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 +165,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 +179,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 +188,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 +199,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 +217,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 +236,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 +277,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 +334,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 +382,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 +483,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 +507,6 @@ msgstr "" "des d'aquí." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Add OpenID" msgstr "Afegeix una connexió OpenID" @@ -538,10 +525,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 +547,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 +562,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." @@ -655,3 +639,9 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Inicia una sessió" + +#~ msgid "" +#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " +#~ "service." +#~ msgstr "" +#~ "* [OpenID](%%doc.openid%%) - Què és OpenID i com utilitzar aquest servei." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index fe33edfeac..12c290bcf9 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -16,13 +16,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -134,13 +134,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/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index bc98f8400e..69af978575 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +61,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 +132,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 +168,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 +575,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..f2d8fb9902 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +131,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." @@ -656,3 +648,10 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Aperir session" + +#~ 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." diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index fd1d3de85d..17e56c4a38 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +129,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..f6e5ee1194 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +131,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." @@ -649,3 +640,10 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Најава" + +#~ msgid "" +#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " +#~ "service." +#~ msgstr "" +#~ "* [OpenID](%%doc.openid%%) - Што е OpenID и како да го користите за оваа " +#~ "служба." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 8f39c2c232..c0a756b5d2 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,8 +10,8 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +135,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." @@ -658,3 +649,10 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Aanmelden" + +#~ 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." diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 4e1c84cf8c..355e85acec 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:11+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-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +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 "" - #. 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..9f41452ac0 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +125,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." @@ -663,3 +654,10 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Lumagda" + +#~ 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." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index c5ae65c345..0c027a7e9e 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +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%%) — Що таке OpenID і як ним користуватися на цьому " -"сервісі." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "Конфігурація OpenID." @@ -651,3 +642,10 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Увійти" + +#~ msgid "" +#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " +#~ "service." +#~ msgstr "" +#~ "* [OpenID](%%doc.openid%%) — Що таке OpenID і як ним користуватися на " +#~ "цьому сервісі." diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 0da3295d44..6dc313dae9 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-10-10 13:38+0000\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..bf6fe37d0f 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eb8e88845b 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8f3da81576 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..51300d7342 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1ea1cb626f 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6398a80dfc 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..92c67e607a 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aba2132260 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..57d8220a0e 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-10-10 13:38+0000\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..6815f48b63 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c26dd017b6 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..14539fd53e --- /dev/null +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:13+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 (r99397); Translate extension (2011-10-07)\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..1fcc2be1c0 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2533c0797a 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2ae8be4b57 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cd43341ed9 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eb31051327 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1475a3dcbf 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-10-10 13:38+0000\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..5cc3fe4b66 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f3d915fcd5 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8c979e71af 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..36e66360a6 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c64695776b 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2a2bdf4ba7 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..59adf1db07 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3a36af854e 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e1024d795f 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b07d0802d4 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f9447a23ad 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e11a3b5340 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8ee6516ded 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0458fbf47c 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b28fc3dd7e 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..432e3e8442 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-10-10 13:38+0000\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..4a960c22c3 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +115,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..eb552b5a2f 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..01ff83a1a7 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index eb44a68dfb..b87955a3cf 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +96,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..2bb29b0986 --- /dev/null +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -0,0 +1,148 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:32+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 (r99397); Translate extension (2011-10-07)\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..182d780a34 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4520fa1a64 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5adcdc64a0 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c764259b6 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e3fe325b1d 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1c63e648b3 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..761185bdc4 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-10-10 13:38+0000\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..68168c9338 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..91c7eddab5 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9a8594979f 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5dcc04ebe2 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8df5cd58f8 --- /dev/null +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -0,0 +1,27 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d4082dd7f1 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d78d910156 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b4394a9d2e 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+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 (r99397); Translate extension (2011-10-07)\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..c0ccef8dea 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+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 (r99397); Translate extension (2011-10-07)\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..13095f9114 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3af160c10b 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d48f8685bd 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb5cb7a2db 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2b3d9c40bb 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8617b471a8 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e09f447f98 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8d4ffc7c30 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c09c629bb6 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-10-10 13:38+0000\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..1402979ca0 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:34+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 (r99397); Translate extension (2011-10-07)\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..93410134dd 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7281dd55d3 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..deb78c2030 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 678b140746..97d1514f72 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3977aa19a8 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7b1846c23b 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d7111be14a 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8b8158e103 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c6cf27c008 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4ab8f51768 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b5b282e391 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8c0b673e8 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2670229b16 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4fcd3527d6 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c98c3b5a4c 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-10-10 13:38+0000\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..36386d567f 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..13cb0b948f --- /dev/null +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,32 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8fe75255ba 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a6a9b8170e 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b472025e06 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eccb747522 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:36+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 (r99397); Translate extension (2011-10-07)\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..e36b443138 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..abe7a8fc85 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b30abbb395 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:36+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 (r99397); Translate extension (2011-10-07)\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..823cd389d6 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fc5cb8afbe 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c74f0762fb 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f03b530b06 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2fce7c2d4e 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9ea2538fb4 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..43fe1cd402 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..61836a63cf 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9d5256949f 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-10-10 13:38+0000\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..a4e049865b 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:40+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 (r99397); Translate extension (2011-10-07)\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 +37,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..b424d584a9 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a5870b257c 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +60,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 +97,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 +105,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 +127,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 +136,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 +191,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 +199,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 +221,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 +268,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..9ef7652144 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 9611e98b9a..496c95c58a 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6f060bd628 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f845638582 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:41+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 (r99397); Translate extension (2011-10-07)\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..c054ee81ee 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..636be2dcfc 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..08fa44870d 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:41+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 (r99397); Translate extension (2011-10-07)\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..aca94b6afe 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1d78960c9c 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b69c728d6b 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-10-10 13:38+0000\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..1908fdb0bb 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e5efe47b79 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +47,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..612355172a 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3b2c02420f 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..94a91535af 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e5d4af5d64 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..76eab8aee2 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55892c8f1d 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-10-10 13:38+0000\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..819bd6fe85 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:42+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 (r99397); Translate extension (2011-10-07)\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..85351ba824 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5cd5ce0ae4 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..05438e40cf 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +23,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..82be6e4e92 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bc283806ee 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b279ce0043 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f8240b01fc 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:43+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 (r99397); Translate extension (2011-10-07)\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..6025fe0dd4 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ac000fa7c0 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:43+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 (r99397); Translate extension (2011-10-07)\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..e31e258e2f 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..24787505c9 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fecc2b098c 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..916dcc2690 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..eb428f0901 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c59233b84f 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..72725dc5b5 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-10-10 13:38+0000\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..0b8d432851 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c723068a36 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f55e5ef009 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9525d7f42c 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..6ab22d2a95 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a88550c976 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb9b84e800 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..e5625d13ef 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..db4ff040ad 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..3e187e3078 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..56c1d7c1ca 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..78cdf3bbbd 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..17d3908adb 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:44+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 (r99397); Translate extension (2011-10-07)\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..19e523e48e 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2f51813877 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-10-10 13:38+0000\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..7ab712fe30 --- /dev/null +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,38 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:45+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 (r99397); Translate extension (2011-10-07)\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..6c9cc42156 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..727c0fb605 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6ee08507d8 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e8f7bf0e7f 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c93241574d 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d3938a977b 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bfc973bd30 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:13+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e197df54b0 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-10-10 13:38+0000\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..fc9b8ee967 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..01d43a0e31 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..30406733ce 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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,15 +35,15 @@ 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. @@ -53,7 +53,7 @@ msgstr "" #. 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..9aa5418acc 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a1a7f606b3 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c9e4803146 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..777870a40c 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7dabb1cd80 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f049b01e92 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:48+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 (r99397); Translate extension (2011-10-07)\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..3db2623cf4 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bcf7e42bd9 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..aaad08f1d2 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-10-10 13:38+0000\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..35818f3fa9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..96ff0b2fa9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..546f04de31 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9efd5fdf08 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4bb5860992 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5eb2c7aadc 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c7c5b1b533 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:49+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 (r99397); Translate extension (2011-10-07)\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..6a808ffccc 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1d19725742 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:49+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 (r99397); Translate extension (2011-10-07)\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..dea59cfaf1 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..140fd26987 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bfc3425317 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..75190e5e21 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8a3076e14 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-10-10 13:38+0000\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..addb9b5680 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fe6a150ce3 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ede08dfe17 --- /dev/null +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9da3c6a019 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a3329e02a2 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..abe20df94d 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..803833e0f6 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7a9dc00429 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7ae1045e7b 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6fc9092a1b 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..52a1494ec9 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c7b5580a8 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-10-10 13:38+0000\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..51c852ddc0 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d4ae02097e 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..817ee27428 --- /dev/null +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c40e47614a 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cfe0856990 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d81094007b 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:06+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 (r99397); Translate extension (2011-10-07)\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..a0c90734f0 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b64cee109d 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4eb49f1586 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cf58467752 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a4ede906a5 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-10-10 13:38+0000\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..d0151d7c8d 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:52+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 (r99397); Translate extension (2011-10-07)\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..8530ad48ef 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:52+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 (r99397); Translate extension (2011-10-07)\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..f84b754a59 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bddc2a1174 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e078491a9d 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c8ecf7bce8 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5de79cb1c1 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..37c7b2411d 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:52+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 (r99397); Translate extension (2011-10-07)\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..a2a5fe5a0c 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c1822b05b3 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..878565b07f 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:52+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 (r99397); Translate extension (2011-10-07)\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..646ecd63a0 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0c1990e339 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..38b33ef752 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..31d155bb6b 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 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 (r99397); Translate extension (2011-10-07)\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..8c3062c349 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-10-10 13:38+0000\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..3a877b854b --- /dev/null +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -0,0 +1,219 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 "" + +#. TRANS: Form legend. +msgid "Unsubscribe from this search" +msgstr "" + +#. TRANS: Button text for unsubscribing from a text search. +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + +#. TRANS: Button title for unsubscribing from a text search. +msgid "Unsubscribe from this search." +msgstr "" + +#. TRANS: Page title when search unsubscription succeeded. +msgid "Unsubscribed" +msgstr "" + +#. TRANS: Error text shown a user tries to track a search query they're already subscribed to. +#, php-format +msgid "You are already tracking the search \"%s\"." +msgstr "" + +#. 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 "" + +#. TRANS: Message given having added a search subscription by track command. +#, php-format +msgid "You are subscribed to the search \"%s\"." +msgstr "" + +#. 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..c3aa8031ef 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..719ac8a9b1 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7816125afa 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a942d8c14a 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e1b21f9fa4 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ae57881b40 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..30bc82532b 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..02ae6fedb4 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-10-10 13:38+0000\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..d04cc74818 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:57+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 (r99397); Translate extension (2011-10-07)\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..203cba5c4d 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5719891162 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..87b418f446 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e4c15ca1a9 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7967e8fd94 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..81d34ed6da 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0988d61247 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..936e0af68f 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bd23e6699b 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..05fba55be6 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2f5a0a7f12 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4763cb9320 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:58+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 (r99397); Translate extension (2011-10-07)\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..deb724685e 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1822fb4ac8 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-10-10 13:38+0000\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..1b4833a6ec 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..159d9ae662 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7a5949e9e5 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5b9b1ef9ca 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:58+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 (r99397); Translate extension (2011-10-07)\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..77e2646be4 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5721c91580 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bad0b7ef9e 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7647955a26 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c0cda14eb1 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3262a4ed4c 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40:59+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 (r99397); Translate extension (2011-10-07)\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..1179ee09a5 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..06fd8386b6 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0959a24086 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4596649f12 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a068a3ac15 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d97754a37 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..447ff4ae51 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:40: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d00e80264d 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-10-10 13:38+0000\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..67f626f77c 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4a3e7f4346 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3a0748d3a3 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..391cd4106f 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9369456ea7 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7973d9066b 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f00b584825 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b6afb7dad8 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2a9558a7c2 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..31142dadb5 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-10-10 13:38+0000\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..df729e7079 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b3a78548a6 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..38e9d07df5 --- /dev/null +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,31 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..55f379440d 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ff3266c1ba 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1387d77cd0 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..62d5e3f2ff 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d8bc5ab74e 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ca46990afe 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b736663128 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d901dcfd8a 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..005cb8dfae 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-10-10 13:38+0000\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..b987672b97 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0f75fbe6d8 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d6ecc0dbc9 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..71fe62972b 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3b4e682f99 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f3199a3b2e 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ae75b9b09c 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1548e17736 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..fbaf552e17 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-10-10 13:38+0000\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..b9daf8136d 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bcd3b643e5 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..51465ee4cf 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2425e26bba 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bf53b4b341 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..92184fde9d 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e84222ee43 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6d38692107 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-10-10 13:38+0000\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..fa3b6938b3 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a8f824cfb3 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2aa5049b98 --- /dev/null +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -0,0 +1,30 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:07+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 (r99397); Translate extension (2011-10-07)\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..fc4b958bd7 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0c24ba4e3d 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..59adb54afb 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ea935dc0c7 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..872a578df1 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..29474a2ad0 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..69015c76ab 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:36+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 1b38ea256b..7e457b31b8 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-10-10 13:38+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..dc61bfb94b --- /dev/null +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -0,0 +1,163 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 "" + +#. 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..f764ccbd71 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 8470b2ea77..4d1bf4ef08 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c70482bc40 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..01a3d0374c 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..398cc4577f 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b1450c1877 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1b6d687a58 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..18ad262826 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-10-10 13:38+0000\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..7ce4caece8 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:11+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 (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index a3af60a374..a0d44c36da 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..691235768a 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d676182860 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4f8f50b317 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0cf2dd5a57 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bf50db7068 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..54e62c61de 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1f9ef1c358 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ddda7da839 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a769649833 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-10-10 13:38+0000\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..982e8d0e8e 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9b91489e62 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f92066ec2b 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d985e0bdad 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..106c1c01f5 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:12+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 (r99397); Translate extension (2011-10-07)\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..c0f05b10cc 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..183ea3b5a0 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..63b0987170 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..05d51270de 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8b282bc90e 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,14 +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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ebcb16034b 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..58f454a398 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:12+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 (r99397); Translate extension (2011-10-07)\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..946c0e3946 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f5d9d2842c 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2733caadac 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e7c0f37bc7 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-10-10 13:38+0000\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..dad6ed867c 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:42+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a95a1db6ad 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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 +81,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 +95,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 +132,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..a414e864a4 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 86889e78ba..54d71d3cde 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7131cc1c67 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d9083068bd 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b2e9a21c1c 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:15+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 (r99397); Translate extension (2011-10-07)\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 +140,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..30d7c55fa2 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c6325ca365 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1dd8cbba5c 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8842a166f7 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-10-10 13:38+0000\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..eacb0d1b93 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..07da786305 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..45d0784aad 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5ac39acfc9 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..80759e46b9 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..930f459ca4 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..56fa08b6b6 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..dab77de670 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b9e08a7072 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7390cd4439 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..f707634c81 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..35876ab816 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4596198783 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bf2acfdf95 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5b9b706b43 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..39a83ecd2c 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6c75097a50 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4fd0ee73cd 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-10-10 13:38+0000\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..af6d37903f 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e758d1ccea 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e30de417e7 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:17+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 (r99397); Translate extension (2011-10-07)\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..eaf021fa6f 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..23742e6800 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d895bd20f8 --- /dev/null +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..087669ed38 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..af88da00f1 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..98ce3db347 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4ab0b50bc4 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..289b0ee3db 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ac530c6e27 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bd791ba46c 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3ab936c7a4 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c9f805ee12 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..968c7132f2 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7827c840fa 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c54005d677 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..91ed5d5245 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-10-10 13:38+0000\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..f50db53b8a 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-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 (r99397); Translate extension (2011-10-07)\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 +430,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..957d10441e 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:51+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-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 (r99397); Translate extension (2011-10-07)\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 +47,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 +65,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 +91,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 +115,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 +143,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 +220,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 +269,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 +278,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 +295,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 +327,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 +343,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..141837efd5 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -13,13 +13,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index d560e1cec4..6b93dd9e78 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,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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 +95,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..7263d6abcb 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:23+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 (r99397); Translate extension (2011-10-07)\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..bb1b5989cc 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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 +217,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..8c4191e454 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:24+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 (r99397); Translate extension (2011-10-07)\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..cb677332a2 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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 +217,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..7d5d1c1535 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:24+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 (r99397); Translate extension (2011-10-07)\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..70e137eaec 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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 +219,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..5d28f274fe 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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..9cf3282afc 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:24+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 (r99397); Translate extension (2011-10-07)\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..b93d3d2b00 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:53+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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..502614ba61 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-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 (r99397); Translate extension (2011-10-07)\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..80a4807abd 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-10-10 13:38+0000\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..125fe12766 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6089368b84 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:26+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 (r99397); Translate extension (2011-10-07)\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..bfd45622e0 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0e03e58f48 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..40fbf23707 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..479332f0dd 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..738227f260 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4bf9b0078f 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..43a4600972 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0cac3940bf 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..bcc187091f 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..943e7d70cc 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-10-10 13:38+0000\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..e179592996 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..df1e2de88e 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..cb5d44f4c5 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7341fe9176 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+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 (r99397); Translate extension (2011-10-07)\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..9f65047502 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0c3c8be177 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e9f49cee9a 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8b5d38eeeb 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..61ccd566a7 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0517e208e3 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8385308e76 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:27+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 (r99397); Translate extension (2011-10-07)\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..64543bb1ea 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+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 (r99397); Translate extension (2011-10-07)\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..0dc695a359 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1b990fd887 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..faf98ef34b 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1ba8e40020 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..3ffd1882f2 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5b2269db95 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..599c33cabc 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2e84af5960 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2e042fb47f 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..9a2475b1a9 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..51ebb87cbd 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-10-10 13:38+0000\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..053a15477c 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..c3a0af64be 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..398077f2f4 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..576213f684 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..549f5ff69f 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4c42915c9e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d9db55805c 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5d6a68f80f 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-10-10 13:38+0000\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..9817442acd 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,13 +10,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..548974819c 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d686a0ee43 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7bf6761711 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a9b6437a08 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:30+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 (r99397); Translate extension (2011-10-07)\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..fbdbd1037d 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2cddb528c3 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ded734f665 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6bd905d104 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:30+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 (r99397); Translate extension (2011-10-07)\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..2f301f34cb 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4676c662a6 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-10-10 13:38+0000\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..50d339f0a5 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+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 (r99397); Translate extension (2011-10-07)\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..ee139edfc6 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b7f194acea 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..30a2d8a5d6 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e2e17e2e59 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1609aac07d 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8bebb0faeb 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..4061058ed5 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..20de5fbdba 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..693a57b477 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..0d2704ac62 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..44329e6a04 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+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 (r99397); Translate extension (2011-10-07)\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..7ff2892a7b 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..ded783daaa 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..a06cb7a64b 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..31db1d0f2f 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..8bb78b834c 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2f30575085 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..11315ed57f 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:32+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 (r99397); Translate extension (2011-10-07)\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..70171e2879 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7126ea2865 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-10-10 13:38+0000\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..5e2da2fc48 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index daf85ce286..3a2de964e8 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..56d4849c54 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..6a36d26265 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d02ff280ea 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-10-10 13:38+0000\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..50a24fdea2 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..5a98cddebb 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -12,13 +12,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 8bcdd25d5e..6d16d64ba3 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,13 +11,13 @@ 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-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..7d9e29242c 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..2ac717bfcb 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..e649b7f425 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..d17025d4d0 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..1e0b5af338 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41:38+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\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..b2bd616b50 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"PO-Revision-Date: 2011-10-10 13:41: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From 5b2a85303a90faf6a309797d87ff0323420dd4c0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 12 Oct 2011 16:15:55 -0400 Subject: [PATCH 064/134] add a \n for japanese email --- locale/ja/LC_MESSAGES/statusnet.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 6359e1c7b6..686ee65d72 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -7980,7 +7980,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. From bb874b62b7c8ea80b89a6aa6ab2261dcda0938a9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 12 Oct 2011 16:15:55 -0400 Subject: [PATCH 065/134] add a \n for japanese email --- locale/ja/LC_MESSAGES/statusnet.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 6359e1c7b6..686ee65d72 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -7980,7 +7980,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. From e78d84556e07ea334965101dbad4b1a12f9364e4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 12 Oct 2011 17:03:43 -0400 Subject: [PATCH 066/134] more robust handling of bad data in offline backup queue handler --- .../offlinebackupqueuehandler.php | 89 ++++++++++++------- 1 file changed, 56 insertions(+), 33 deletions(-) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index 054c4d403c..2de6c9a667 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -126,11 +126,16 @@ class OfflineBackupQueueHandler extends QueueHandler $notice = $stream->getNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); while ($notice->fetch()) { - $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; + 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++; @@ -148,12 +153,17 @@ class OfflineBackupQueueHandler extends QueueHandler $fave = Fave::byProfile($user->id, ($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); while ($fave->fetch()) { - $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; + 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++; @@ -171,15 +181,20 @@ class OfflineBackupQueueHandler extends QueueHandler $sub = Subscription::bySubscriber($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); while ($sub->fetch()) { - if ($sub->subscribed == $user->id) { + 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; } - $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; } $page++; @@ -197,15 +212,20 @@ class OfflineBackupQueueHandler extends QueueHandler $sub = Subscription::bySubscribed($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); while ($sub->fetch()) { - if ($sub->subscriber == $user->id) { + 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; } - $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; } $page++; @@ -224,18 +244,21 @@ class OfflineBackupQueueHandler extends QueueHandler $mem = Group_member::byMember($user->id, ($page-1)*GROUPS_PER_PAGE, GROUPS_PER_PAGE + 1); while ($mem->fetch()) { - $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; + 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++; - common_debug("Got " . $mem->N . " results on search for groups."); - } while ($mem->N > GROUPS_PER_PAGE); } From d27b7627a545cf882d007bfc3966e229ad9aa39f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 12 Oct 2011 17:03:43 -0400 Subject: [PATCH 067/134] more robust handling of bad data in offline backup queue handler --- .../offlinebackupqueuehandler.php | 89 ++++++++++++------- 1 file changed, 56 insertions(+), 33 deletions(-) diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php index 054c4d403c..2de6c9a667 100644 --- a/plugins/OfflineBackup/offlinebackupqueuehandler.php +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -126,11 +126,16 @@ class OfflineBackupQueueHandler extends QueueHandler $notice = $stream->getNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); while ($notice->fetch()) { - $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; + 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++; @@ -148,12 +153,17 @@ class OfflineBackupQueueHandler extends QueueHandler $fave = Fave::byProfile($user->id, ($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); while ($fave->fetch()) { - $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; + 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++; @@ -171,15 +181,20 @@ class OfflineBackupQueueHandler extends QueueHandler $sub = Subscription::bySubscriber($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); while ($sub->fetch()) { - if ($sub->subscribed == $user->id) { + 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; } - $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; } $page++; @@ -197,15 +212,20 @@ class OfflineBackupQueueHandler extends QueueHandler $sub = Subscription::bySubscribed($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); while ($sub->fetch()) { - if ($sub->subscriber == $user->id) { + 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; } - $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; } $page++; @@ -224,18 +244,21 @@ class OfflineBackupQueueHandler extends QueueHandler $mem = Group_member::byMember($user->id, ($page-1)*GROUPS_PER_PAGE, GROUPS_PER_PAGE + 1); while ($mem->fetch()) { - $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; + 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++; - common_debug("Got " . $mem->N . " results on search for groups."); - } while ($mem->N > GROUPS_PER_PAGE); } From b42cc773ed16e7cddf78a1525475329d430b1753 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 16 Oct 2011 04:44:08 -0400 Subject: [PATCH 068/134] Script to move a statusnetwork from one db server to another This script helps move a statusnetwork from one DB server to another. It's for use with multi-site installations (like status.net). --- scripts/move_status_network.sh | 102 +++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 scripts/move_status_network.sh 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. From 22fead1b46118a4fcb45b20a3bce620dd3283b65 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 10:40:39 -0400 Subject: [PATCH 069/134] Squashed commit of the following: commit fb1dfa9e98ded23fb5bdebae6465424a8cb8acd6 Author: Evan Prodromou Date: Thu Oct 20 10:40:07 2011 -0400 Use popular notice stream for favorited page commit e1d409ff738e39061ad35589d546ce9bed456975 Author: Evan Prodromou Date: Thu Oct 20 10:32:23 2011 -0400 Use a caching stream for popular notice section Instead of a big cached query, we now use a caching notice stream for the popular notice section. It uses a single-table query at the bottom, then scopes the notices and filters for silenced users. This should be much nicer to our database servers. Also clears the popular cache when someone favors or disfavors something. A nice optimization would be to save the last weights and re-calculate them at invalidation time, adding the new notice (or not) depending on its own score. That will have to wait for another day, though. commit e9b7ab4c26c95e755adaff53c3957dcfca31c16b Author: Evan Prodromou Date: Thu Oct 20 10:31:14 2011 -0400 Let CachingNoticeStream users skip the ';last' optimization --- actions/favorited.php | 7 +-- actions/public.php | 4 +- classes/Fave.php | 2 + lib/cachingnoticestream.php | 43 ++++++++------ lib/popularnoticesection.php | 19 +++--- lib/popularnoticestream.php | 109 +++++++++++++++++++++++++++++++++++ 6 files changed, 152 insertions(+), 32 deletions(-) create mode 100644 lib/popularnoticestream.php 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/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/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/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/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; + } +} + From 6a6ac58fafc07c8fd2d887710ad5e34c3fe530d8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 10:42:54 -0400 Subject: [PATCH 070/134] remove unused Popularity class; use PopularNoticeStream instead --- lib/popularity.php | 92 ---------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 lib/popularity.php 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 From 1b916fe36b699d54ee8faa0fb6376f7d55f7fcf0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 10:42:54 -0400 Subject: [PATCH 071/134] remove unused Popularity class; use PopularNoticeStream instead --- lib/popularity.php | 92 ---------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 lib/popularity.php 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 From b8079549cedbe0aa1f60e48c77ec1fc195731609 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 10:54:33 -0400 Subject: [PATCH 072/134] Include the current profile in popular notice section for all --- actions/all.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); From e64ae1f03d8f57195c1910da39367d5467eecbf2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 10:57:58 -0400 Subject: [PATCH 073/134] Don't start

element until we've checked for attachments --- plugins/Bookmark/bookmarklistitem.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index 381864c21c..9b7a3742fa 100644 --- a/plugins/Bookmark/bookmarklistitem.php +++ b/plugins/Bookmark/bookmarklistitem.php @@ -60,8 +60,6 @@ class BookmarkListItem extends NoticeListItemAdapter $notice = $this->nli->notice; $out = $this->nli->out; - $out->elementStart('p', array('class' => 'entry-content')); - $nb = Bookmark::getByNotice($notice); $profile = $notice->getProfile(); @@ -85,9 +83,10 @@ class BookmarkListItem extends NoticeListItemAdapter parent::showContent(); return; - } + $out->elementStart('p', array('class' => 'entry-content')); + $att = $atts[0]; $out->elementStart('h3'); From 053e99733f62a92e76c5250353e1813b2369485c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 11:47:44 -0400 Subject: [PATCH 074/134] add rel=nofollow to bookmark links if needed --- plugins/Bookmark/bookmarklistitem.php | 45 +++++++++++++-------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index 9b7a3742fa..a2dbf8156d 100644 --- a/plugins/Bookmark/bookmarklistitem.php +++ b/plugins/Bookmark/bookmarklistitem.php @@ -62,38 +62,37 @@ class BookmarkListItem extends NoticeListItemAdapter $nb = Bookmark::getByNotice($notice); - $profile = $notice->getProfile(); - - $atts = $notice->attachments(); - - if (empty($atts)) { - - // Something went wrong! - - common_log( - LOG_ERR, - sprintf( - 'Bookmark %1$s (notice %2$d) has no attachments.', - $nb->id, - $notice->id - ) - ); - - // try to show the notice as plain text - + 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(); + $out->elementStart('p', array('class' => 'entry-content')); - $att = $atts[0]; + // 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'; + } $out->elementStart('h3'); $out->element('a', - array('href' => $att->url, - 'class' => 'bookmark-title'), - $nb->title); + $attrs, + $nb->title); $out->elementEnd('h3'); // Replies look like "for:" tags From 499e7d7c41cbf1d28718611eb4f9eaaa19b98ff3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Oct 2011 12:50:39 -0400 Subject: [PATCH 075/134] Squashed commit of the following: commit 74c5e4cce42ae601c07b447e100f097c15ebf9d2 Author: Evan Prodromou Date: Thu Oct 20 12:48:52 2011 -0400 Add back in some optimization indices lost in schema conversion commit ef5c2acfcd123b25910a1c8bb4ae01a3f9608e5e Author: Evan Prodromou Date: Thu Oct 20 12:29:57 2011 -0400 restore some of the lost optimized indices on notice table --- classes/Group_inbox.php | 1 + classes/Group_member.php | 2 ++ classes/Notice.php | 8 ++++---- classes/Notice_tag.php | 1 + classes/Profile_role.php | 1 + classes/Reply.php | 1 + 6 files changed, 10 insertions(+), 4 deletions(-) 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/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_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') ), ); } From 679361652132f4b85f14a838b273d5415d3e6d22 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 24 Oct 2011 20:13:10 -0400 Subject: [PATCH 076/134] Success exit from settag.php if desired state already exists If you're adding a tag that already exists, or deleting a tag that doesn't exist, using settag.php, the exit value is 0 instead of previous -1. This makes scripting around tags a wee bit easier. --- scripts/settag.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); From ec20544baf9e14de6f852e3c0cf1ebe7fece418f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 25 Oct 2011 09:42:02 -0400 Subject: [PATCH 077/134] More free or consumer email domains --- plugins/DomainStatusNetwork/lib/freeemail.php | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/plugins/DomainStatusNetwork/lib/freeemail.php b/plugins/DomainStatusNetwork/lib/freeemail.php index fe3cc5a4fb..f667750ea7 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,6 +18,7 @@ class FreeEmail { '8.am', 'a.org.ua', 'abha.cc', + 'abv.bg', 'accountant.com', 'actingbiz.com', 'adexec.com', @@ -72,16 +75,19 @@ class FreeEmail { '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', 'buraydah.cc', 'butch-femme.org', 'byke.com', + 'cablevision.com', 'calle22.com', 'cameroon.cc', 'cannabismail.com', @@ -98,6 +104,7 @@ class FreeEmail { 'clerk.com', 'cliffhanger.com', 'columnist.com', + 'comcast.net', 'comic.com', 'company.org.ua', 'congiu.net', @@ -146,6 +153,7 @@ class FreeEmail { 'europe.com', 'execs.com', 'ezsweeps.com', + 'facebook.com', 'falasteen.cc', 'famous.as', 'farts.com', @@ -153,6 +161,8 @@ class FreeEmail { 'financier.com', 'firemyst.com', 'fit.lv', + 'foxmail.com', + 'free.fr', 'freeonline.com', 'fromru.com', 'front.ru', @@ -172,6 +182,9 @@ class FreeEmail { 'giza.cc', 'glittergrrrls.com', 'gmail.com', + 'gmx.com', + 'gmx.de', + 'gmx.net', 'goatrance.com', 'goddess.com', 'gohip.com', @@ -198,6 +211,9 @@ class FreeEmail { 'homs.cc', 'hotbox.ru', 'hotmail.com', + 'hotmail.co.uk', + 'hotmail.de', + 'hotmail.es', 'hotmail.ru', 'hot-shot.com', 'houseofhorrors.com', @@ -206,6 +222,8 @@ class FreeEmail { 'human.lv', 'ibra.cc', 'idunno4recipes.com', + 'ig.com', + 'ig.com.br', 'ihatenetscape.com', 'iname.com', 'inbox.ru', @@ -234,21 +252,26 @@ 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', 'latinogreeks.com', + 'lavabit.com', 'lawyer.com', 'lebanese.cc', 'leesville.com', 'legislator.com', 'list.ru', 'live.com', + 'live.com.mx', 'lobbyist.com', 'london.com', 'loveable.com', @@ -275,6 +298,7 @@ class FreeEmail { 'marillion.net', 'marrakesh.cc', 'mascara.ws', + 'me.com', 'megarave.com', 'meknes.cc', 'mesra.net', @@ -297,6 +321,8 @@ class FreeEmail { 'nador.cc', 'najaf.cc', 'narod.ru', + 'naver.com', + 'nepwk.com', 'netbroadcaster.com', 'netfingers.com', 'net-surf.com', @@ -316,6 +342,7 @@ class FreeEmail { 'oued.org', 'oujda.biz', 'oujda.cc', + 'ovi.com', 'paidoffers.net', 'pakistani.ws', 'palmyra.cc', @@ -352,6 +379,7 @@ class FreeEmail { 'puertoricowow.com', 'puppetweb.com', 'qassem.cc', + 'qq.com', 'quds.cc', 'rabat.cc', 'rafah.cc', @@ -385,6 +413,7 @@ class FreeEmail { 'samerica.com', 'sanaa.cc', 'sanfranmail.com', + 'sbcglobal.net', 'scientist.com', 'seductive.com', 'seeb.cc', @@ -418,6 +447,7 @@ class FreeEmail { 'supermail.ru', 'surfguiden.com', 'sweetwishes.com', + 't-online.de', 'tabouk.cc', 'tajikistan.cc', 'tangiers.cc', @@ -434,6 +464,7 @@ class FreeEmail { 'timor.cc', 'tokyo.com', 'tombstone.ws', + 'trash-mail.com', 'troamail.org', 'tunisian.cc', 'tunisian.cc', @@ -442,6 +473,7 @@ class FreeEmail { 'u2tours.com', 'ua.fm', 'uaix.info', + 'ukr.net', 'umpire.com', 'urdun.cc', 'usa.com', @@ -449,17 +481,27 @@ class FreeEmail { 'vitalogy.org', 'whatisthis.com', 'whoever.com', + 'windowslive.com', 'winning.com', 'witty.com', 'wrestlezone.com', 'writeme.com', 'yahoo.ca', 'yahoo.com', + 'yahoo.com.cn', + 'yahoo.co.id', + 'yahoo.co.in', + 'yahoo.de', + 'yahoo.fr', + 'yahoo.es', + 'yahoo.in', + 'yahoo.it', 'yanbo.cc', 'yandex.ru', 'yepmail.com', 'yemeni.cc', 'yogaelements.com', + 'yopmail.fr', 'yours.com', 'yunus.cc', 'zabor.lv', From a4ec8bb047ba8347e6f11731693a4c06cb044310 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 25 Oct 2011 10:00:19 -0400 Subject: [PATCH 078/134] More free email domains --- plugins/DomainStatusNetwork/lib/freeemail.php | 95 ++++++++++++++++++- 1 file changed, 92 insertions(+), 3 deletions(-) diff --git a/plugins/DomainStatusNetwork/lib/freeemail.php b/plugins/DomainStatusNetwork/lib/freeemail.php index f667750ea7..3f8f4452e9 100644 --- a/plugins/DomainStatusNetwork/lib/freeemail.php +++ b/plugins/DomainStatusNetwork/lib/freeemail.php @@ -25,6 +25,7 @@ class FreeEmail { 'africamail.com', 'agadir.cc', 'ahsa.ws', + 'aim.com', 'ajman.cc', 'ajman.us', 'ajman.ws', @@ -40,6 +41,7 @@ class FreeEmail { 'anatomicrock.com', 'animeone.com', 'anjungcafe.com', + 'any-mail.co.uk', 'aqaba.cc', 'arar.ws', 'archaeologist.com', @@ -49,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', @@ -69,6 +73,7 @@ class FreeEmail { 'bikerider.com', 'bikermail.com', 'billssite.com', + 'binkmail.com', 'bizerte.cc', 'bk.ru', 'blackandchristian.com', @@ -84,6 +89,7 @@ class FreeEmail { 'bolbox.com', 'bongmail.com', 'bowl.com', + 'btamail.net.cn', 'buraydah.cc', 'butch-femme.org', 'byke.com', @@ -141,6 +147,8 @@ class FreeEmail { 'egypt.net', 'e-mail.am', 'email.com', + 'email.cz', + 'email.it', 'e-mail.ru', 'emailfast.com', 'emails.ru', @@ -209,23 +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', @@ -263,6 +296,7 @@ class FreeEmail { 'latakia.cc', 'latchess.com', 'latinabarbie.com', + 'latinmail.com', 'latinogreeks.com', 'lavabit.com', 'lawyer.com', @@ -270,10 +304,33 @@ class FreeEmail { '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', @@ -283,16 +340,19 @@ 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', @@ -314,6 +374,7 @@ class FreeEmail { 'musician.net', 'musician.org', 'musicsites.com', + 'myopera.com', 'myself.com', 'nabeul.cc', 'nabeul.info', @@ -333,6 +394,8 @@ class FreeEmail { 'nm.ru', 'nocharge.com', 'nycmail.com', + 'o2.co.uk', + 'o2.pl', 'omani.ws', 'omdurman.cc', 'operationivy.com', @@ -400,26 +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', @@ -487,15 +557,34 @@ class FreeEmail { 'wrestlezone.com', 'writeme.com', 'yahoo.ca', - 'yahoo.com', - 'yahoo.com.cn', + '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.fr', + 'yahoo.dk', 'yahoo.es', + 'yahoo.fr', + 'yahoo.gr', 'yahoo.in', 'yahoo.it', + 'yahoo.pl', + 'yahoo.ro', + 'yahoo.se', 'yanbo.cc', 'yandex.ru', 'yepmail.com', From 151ff6beb70670802ec404094dd48b58a4afd69a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 29 Oct 2011 14:30:42 +0200 Subject: [PATCH 079/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 54 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 175 +++-- locale/bg/LC_MESSAGES/statusnet.po | 35 +- locale/br/LC_MESSAGES/statusnet.po | 48 +- locale/ca/LC_MESSAGES/statusnet.po | 104 +-- locale/cs/LC_MESSAGES/statusnet.po | 52 +- locale/de/LC_MESSAGES/statusnet.po | 330 +++------ locale/en_GB/LC_MESSAGES/statusnet.po | 43 +- locale/eo/LC_MESSAGES/statusnet.po | 50 +- locale/es/LC_MESSAGES/statusnet.po | 52 +- locale/eu/LC_MESSAGES/statusnet.po | 155 ++--- locale/fa/LC_MESSAGES/statusnet.po | 50 +- locale/fi/LC_MESSAGES/statusnet.po | 53 +- locale/fr/LC_MESSAGES/statusnet.po | 57 +- locale/fur/LC_MESSAGES/statusnet.po | 44 +- locale/gl/LC_MESSAGES/statusnet.po | 57 +- locale/he/LC_MESSAGES/statusnet.po | 21 +- locale/hsb/LC_MESSAGES/statusnet.po | 45 +- locale/hu/LC_MESSAGES/statusnet.po | 26 +- locale/ia/LC_MESSAGES/statusnet.po | 104 +-- locale/it/LC_MESSAGES/statusnet.po | 51 +- locale/ja/LC_MESSAGES/statusnet.po | 74 +- locale/ka/LC_MESSAGES/statusnet.po | 49 +- locale/ko/LC_MESSAGES/statusnet.po | 37 +- locale/mk/LC_MESSAGES/statusnet.po | 99 +-- locale/ml/LC_MESSAGES/statusnet.po | 42 +- locale/nb/LC_MESSAGES/statusnet.po | 54 +- locale/nl/LC_MESSAGES/statusnet.po | 140 ++-- locale/pl/LC_MESSAGES/statusnet.po | 54 +- locale/pt/LC_MESSAGES/statusnet.po | 51 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 52 +- locale/ru/LC_MESSAGES/statusnet.po | 50 +- locale/statusnet.pot | 26 +- locale/sv/LC_MESSAGES/statusnet.po | 48 +- locale/te/LC_MESSAGES/statusnet.po | 50 +- locale/tl/LC_MESSAGES/statusnet.po | 48 +- locale/uk/LC_MESSAGES/statusnet.po | 50 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 44 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 7 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 7 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 7 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 7 +- .../locale/de/LC_MESSAGES/AccountManager.po | 7 +- .../locale/eu/LC_MESSAGES/AccountManager.po | 29 + .../locale/fi/LC_MESSAGES/AccountManager.po | 7 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 7 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 7 +- .../locale/he/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 7 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 7 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 7 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 7 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 7 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 7 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 7 +- plugins/Activity/locale/Activity.pot | 2 +- .../locale/ar/LC_MESSAGES/Activity.po | 7 +- .../locale/ca/LC_MESSAGES/Activity.po | 7 +- .../locale/de/LC_MESSAGES/Activity.po | 7 +- .../locale/eu/LC_MESSAGES/Activity.po | 7 +- .../locale/ia/LC_MESSAGES/Activity.po | 7 +- .../locale/mk/LC_MESSAGES/Activity.po | 7 +- .../locale/nl/LC_MESSAGES/Activity.po | 7 +- .../locale/ru/LC_MESSAGES/Activity.po | 7 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/eu/LC_MESSAGES/Adsense.po | 103 +++ .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 13 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 7 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 7 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 7 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/eu/LC_MESSAGES/Aim.po | 46 ++ plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 7 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 7 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 7 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 18 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 7 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 7 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 7 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 7 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 7 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 7 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/eu/LC_MESSAGES/Autocomplete.po | 31 + .../locale/fr/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 7 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 7 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 7 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 7 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 7 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 7 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 7 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 7 +- .../locale/de/LC_MESSAGES/Blacklist.po | 7 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 7 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 7 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 7 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 7 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 7 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 7 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 7 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 7 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 7 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 7 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 7 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 7 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 10 +- plugins/Blog/locale/eu/LC_MESSAGES/Blog.po | 96 +++ plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 97 +++ plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 7 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 7 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 7 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 7 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 9 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 12 +- .../locale/de/LC_MESSAGES/Bookmark.po | 12 +- .../locale/eu/LC_MESSAGES/Bookmark.po | 14 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 12 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 12 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 12 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 12 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 12 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 9 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 12 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 12 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 7 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 7 +- .../locale/br/LC_MESSAGES/CacheLog.po | 7 +- .../locale/de/LC_MESSAGES/CacheLog.po | 7 +- .../locale/es/LC_MESSAGES/CacheLog.po | 7 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 7 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 7 +- .../locale/he/LC_MESSAGES/CacheLog.po | 7 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 7 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 7 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 7 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 7 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 7 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 7 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 7 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 7 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 7 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 7 +- .../br/LC_MESSAGES/CasAuthentication.po | 7 +- .../ca/LC_MESSAGES/CasAuthentication.po | 7 +- .../de/LC_MESSAGES/CasAuthentication.po | 7 +- .../es/LC_MESSAGES/CasAuthentication.po | 7 +- .../eu/LC_MESSAGES/CasAuthentication.po | 72 ++ .../fr/LC_MESSAGES/CasAuthentication.po | 7 +- .../hu/LC_MESSAGES/CasAuthentication.po | 7 +- .../ia/LC_MESSAGES/CasAuthentication.po | 7 +- .../mk/LC_MESSAGES/CasAuthentication.po | 7 +- .../nl/LC_MESSAGES/CasAuthentication.po | 7 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 7 +- .../ru/LC_MESSAGES/CasAuthentication.po | 7 +- .../tl/LC_MESSAGES/CasAuthentication.po | 7 +- .../uk/LC_MESSAGES/CasAuthentication.po | 7 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 7 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 7 +- .../de/LC_MESSAGES/ClientSideShorten.po | 7 +- .../es/LC_MESSAGES/ClientSideShorten.po | 7 +- .../eu/LC_MESSAGES/ClientSideShorten.po | 35 + .../fr/LC_MESSAGES/ClientSideShorten.po | 7 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 7 +- .../he/LC_MESSAGES/ClientSideShorten.po | 7 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 7 +- .../id/LC_MESSAGES/ClientSideShorten.po | 7 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 7 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 7 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 7 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 11 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 7 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 7 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 7 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 7 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 7 +- .../locale/DirectionDetector.pot | 2 +- .../ast/LC_MESSAGES/DirectionDetector.po | 7 +- .../LC_MESSAGES/DirectionDetector.po | 7 +- .../br/LC_MESSAGES/DirectionDetector.po | 7 +- .../de/LC_MESSAGES/DirectionDetector.po | 7 +- .../es/LC_MESSAGES/DirectionDetector.po | 7 +- .../fi/LC_MESSAGES/DirectionDetector.po | 7 +- .../fr/LC_MESSAGES/DirectionDetector.po | 7 +- .../gl/LC_MESSAGES/DirectionDetector.po | 7 +- .../he/LC_MESSAGES/DirectionDetector.po | 7 +- .../ia/LC_MESSAGES/DirectionDetector.po | 7 +- .../id/LC_MESSAGES/DirectionDetector.po | 7 +- .../ja/LC_MESSAGES/DirectionDetector.po | 7 +- .../lb/LC_MESSAGES/DirectionDetector.po | 7 +- .../mk/LC_MESSAGES/DirectionDetector.po | 7 +- .../nb/LC_MESSAGES/DirectionDetector.po | 7 +- .../nl/LC_MESSAGES/DirectionDetector.po | 7 +- .../pt/LC_MESSAGES/DirectionDetector.po | 7 +- .../ru/LC_MESSAGES/DirectionDetector.po | 7 +- .../tl/LC_MESSAGES/DirectionDetector.po | 7 +- .../uk/LC_MESSAGES/DirectionDetector.po | 7 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 7 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 7 +- .../locale/ca/LC_MESSAGES/Directory.po | 7 +- .../locale/de/LC_MESSAGES/Directory.po | 7 +- .../locale/eu/LC_MESSAGES/Directory.po | 173 +++++ .../locale/fi/LC_MESSAGES/Directory.po | 7 +- .../locale/fr/LC_MESSAGES/Directory.po | 7 +- .../locale/gl/LC_MESSAGES/Directory.po | 161 +++++ .../locale/ia/LC_MESSAGES/Directory.po | 7 +- .../locale/ja/LC_MESSAGES/Directory.po | 7 +- .../locale/mk/LC_MESSAGES/Directory.po | 7 +- .../locale/nl/LC_MESSAGES/Directory.po | 7 +- .../locale/sv/LC_MESSAGES/Directory.po | 7 +- .../locale/tl/LC_MESSAGES/Directory.po | 7 +- .../locale/uk/LC_MESSAGES/Directory.po | 7 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 7 +- .../locale/br/LC_MESSAGES/DiskCache.po | 7 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 7 +- .../locale/de/LC_MESSAGES/DiskCache.po | 7 +- .../locale/es/LC_MESSAGES/DiskCache.po | 7 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 7 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 7 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 7 +- .../locale/he/LC_MESSAGES/DiskCache.po | 7 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 7 +- .../locale/id/LC_MESSAGES/DiskCache.po | 7 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 7 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 7 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 7 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 7 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 7 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 7 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 7 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 7 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 7 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 7 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 7 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 7 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 7 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 7 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 7 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 7 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 7 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 7 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 7 +- .../br/LC_MESSAGES/EmailAuthentication.po | 7 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 7 +- .../de/LC_MESSAGES/EmailAuthentication.po | 7 +- .../es/LC_MESSAGES/EmailAuthentication.po | 7 +- .../eu/LC_MESSAGES/EmailAuthentication.po | 31 + .../fi/LC_MESSAGES/EmailAuthentication.po | 7 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 7 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 7 +- .../he/LC_MESSAGES/EmailAuthentication.po | 7 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 7 +- .../id/LC_MESSAGES/EmailAuthentication.po | 7 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 7 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 7 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 7 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 7 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 7 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 7 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 7 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 7 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 7 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 7 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 7 +- .../br/LC_MESSAGES/EmailRegistration.po | 7 +- .../ca/LC_MESSAGES/EmailRegistration.po | 7 +- .../de/LC_MESSAGES/EmailRegistration.po | 7 +- .../eu/LC_MESSAGES/EmailRegistration.po | 192 ++++++ .../fr/LC_MESSAGES/EmailRegistration.po | 7 +- .../hu/LC_MESSAGES/EmailRegistration.po | 7 +- .../ia/LC_MESSAGES/EmailRegistration.po | 7 +- .../mk/LC_MESSAGES/EmailRegistration.po | 7 +- .../nl/LC_MESSAGES/EmailRegistration.po | 7 +- .../sv/LC_MESSAGES/EmailRegistration.po | 7 +- .../tl/LC_MESSAGES/EmailRegistration.po | 7 +- .../uk/LC_MESSAGES/EmailRegistration.po | 7 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 7 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 7 +- .../locale/eu/LC_MESSAGES/EmailReminder.po | 53 ++ .../locale/ia/LC_MESSAGES/EmailReminder.po | 7 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 7 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 7 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 7 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/eu/LC_MESSAGES/EmailSummary.po | 52 ++ .../locale/ia/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 7 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 7 +- plugins/Event/locale/Event.pot | 2 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 42 +- plugins/Event/locale/eu/LC_MESSAGES/Event.po | 421 ++++++++++++ plugins/Event/locale/fr/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 21 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 15 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 15 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/eu/LC_MESSAGES/ExtendedProfile.po | 234 +++++++ .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 7 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 7 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 9 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 9 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 7 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 7 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 7 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/eu/LC_MESSAGES/FollowEveryone.po | 33 + .../locale/fi/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 7 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 7 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 7 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 7 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/eu/LC_MESSAGES/GeoURL.po | 31 + .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 7 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 7 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ca/LC_MESSAGES/Geonames.po | 7 +- .../locale/de/LC_MESSAGES/Geonames.po | 7 +- .../locale/eu/LC_MESSAGES/Geonames.po | 53 ++ .../locale/fi/LC_MESSAGES/Geonames.po | 7 +- .../locale/fr/LC_MESSAGES/Geonames.po | 7 +- .../locale/ia/LC_MESSAGES/Geonames.po | 7 +- .../locale/mk/LC_MESSAGES/Geonames.po | 7 +- .../locale/nl/LC_MESSAGES/Geonames.po | 7 +- .../locale/sv/LC_MESSAGES/Geonames.po | 7 +- .../locale/tl/LC_MESSAGES/Geonames.po | 7 +- .../locale/uk/LC_MESSAGES/Geonames.po | 7 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 7 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 7 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 7 +- .../locale/de/LC_MESSAGES/Gravatar.po | 7 +- .../locale/es/LC_MESSAGES/Gravatar.po | 7 +- .../locale/eu/LC_MESSAGES/Gravatar.po | 31 + .../locale/fr/LC_MESSAGES/Gravatar.po | 7 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 7 +- .../locale/he/LC_MESSAGES/Gravatar.po | 7 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 7 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 7 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 7 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 7 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 7 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 7 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 7 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 7 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/eu/LC_MESSAGES/GroupFavorited.po | 49 ++ .../locale/fr/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 7 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../eu/LC_MESSAGES/GroupPrivateMessage.po | 292 ++++++++ .../fr/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 7 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 7 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/eu/LC_MESSAGES/Imap.po | 60 ++ plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 7 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 7 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 7 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 7 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 7 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/eu/LC_MESSAGES/InfiniteScroll.po | 34 + .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 7 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 7 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 7 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 7 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 7 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 7 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 7 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 7 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 7 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 7 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 7 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 7 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 7 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 7 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 7 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 7 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 7 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 7 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 7 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 7 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 7 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 7 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/eu/LC_MESSAGES/LilUrl.po | 33 + .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 7 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 7 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 7 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 7 +- .../locale/ca/LC_MESSAGES/Linkback.po | 7 +- .../locale/de/LC_MESSAGES/Linkback.po | 7 +- .../locale/es/LC_MESSAGES/Linkback.po | 7 +- .../locale/fi/LC_MESSAGES/Linkback.po | 7 +- .../locale/fr/LC_MESSAGES/Linkback.po | 7 +- .../locale/gl/LC_MESSAGES/Linkback.po | 7 +- .../locale/he/LC_MESSAGES/Linkback.po | 7 +- .../locale/ia/LC_MESSAGES/Linkback.po | 7 +- .../locale/id/LC_MESSAGES/Linkback.po | 7 +- .../locale/mk/LC_MESSAGES/Linkback.po | 7 +- .../locale/nb/LC_MESSAGES/Linkback.po | 7 +- .../locale/nl/LC_MESSAGES/Linkback.po | 7 +- .../locale/pt/LC_MESSAGES/Linkback.po | 7 +- .../locale/ru/LC_MESSAGES/Linkback.po | 7 +- .../locale/tl/LC_MESSAGES/Linkback.po | 7 +- .../locale/uk/LC_MESSAGES/Linkback.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 7 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 7 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 7 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 7 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 7 +- .../locale/he/LC_MESSAGES/LogFilter.po | 7 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 7 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 7 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 7 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 7 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 7 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 7 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 7 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 7 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 7 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 7 +- .../locale/es/LC_MESSAGES/Memcache.po | 7 +- .../locale/fi/LC_MESSAGES/Memcache.po | 7 +- .../locale/fr/LC_MESSAGES/Memcache.po | 7 +- .../locale/gl/LC_MESSAGES/Memcache.po | 7 +- .../locale/he/LC_MESSAGES/Memcache.po | 7 +- .../locale/ia/LC_MESSAGES/Memcache.po | 7 +- .../locale/mk/LC_MESSAGES/Memcache.po | 7 +- .../locale/nb/LC_MESSAGES/Memcache.po | 7 +- .../locale/nl/LC_MESSAGES/Memcache.po | 7 +- .../locale/pt/LC_MESSAGES/Memcache.po | 7 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 7 +- .../locale/ru/LC_MESSAGES/Memcache.po | 7 +- .../locale/sv/LC_MESSAGES/Memcache.po | 7 +- .../locale/tl/LC_MESSAGES/Memcache.po | 7 +- .../locale/uk/LC_MESSAGES/Memcache.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 7 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 7 +- .../locale/es/LC_MESSAGES/Memcached.po | 7 +- .../locale/fi/LC_MESSAGES/Memcached.po | 7 +- .../locale/fr/LC_MESSAGES/Memcached.po | 7 +- .../locale/gl/LC_MESSAGES/Memcached.po | 7 +- .../locale/he/LC_MESSAGES/Memcached.po | 7 +- .../locale/ia/LC_MESSAGES/Memcached.po | 7 +- .../locale/id/LC_MESSAGES/Memcached.po | 7 +- .../locale/ja/LC_MESSAGES/Memcached.po | 7 +- .../locale/mk/LC_MESSAGES/Memcached.po | 7 +- .../locale/nb/LC_MESSAGES/Memcached.po | 7 +- .../locale/nl/LC_MESSAGES/Memcached.po | 7 +- .../locale/pt/LC_MESSAGES/Memcached.po | 7 +- .../locale/ru/LC_MESSAGES/Memcached.po | 7 +- .../locale/sv/LC_MESSAGES/Memcached.po | 7 +- .../locale/tl/LC_MESSAGES/Memcached.po | 7 +- .../locale/uk/LC_MESSAGES/Memcached.po | 7 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 7 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 7 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 7 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 7 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 7 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 39 ++ .../locale/fr/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 7 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 7 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 7 +- .../locale/es/LC_MESSAGES/ModHelper.po | 7 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 7 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 7 +- .../locale/he/LC_MESSAGES/ModHelper.po | 7 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 7 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 7 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 7 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 7 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 7 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 7 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 7 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 7 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 7 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 7 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 7 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/eu/LC_MESSAGES/Msn.po | 54 ++ plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 7 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 7 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/eu/LC_MESSAGES/NoticeTitle.po | 40 ++ .../locale/fr/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 7 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 7 +- plugins/OMB/locale/OMB.pot | 2 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 7 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 7 +- plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 60 ++ plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 7 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 7 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 7 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 7 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 7 +- .../OfflineBackup/locale/OfflineBackup.pot | 2 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 7 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 15 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/eu/LC_MESSAGES/OpenID.po | 638 ++++++++++++++++++ .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 16 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 7 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 7 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 7 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 7 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 7 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 7 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/eu/LC_MESSAGES/Poll.po | 149 ++++ plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 7 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 7 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 7 +- .../locale/es/LC_MESSAGES/PostDebug.po | 7 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 7 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 7 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 7 +- .../locale/he/LC_MESSAGES/PostDebug.po | 7 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 7 +- .../locale/id/LC_MESSAGES/PostDebug.po | 7 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 7 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 7 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 7 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 7 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 7 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 7 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 7 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 7 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 7 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 35 + .../fr/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 7 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 7 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 7 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 7 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 7 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 41 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 304 +++++++++ plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 7 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 7 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 7 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 7 +- .../locale/ar/LC_MESSAGES/Realtime.po | 7 +- .../locale/br/LC_MESSAGES/Realtime.po | 7 +- .../locale/ca/LC_MESSAGES/Realtime.po | 7 +- .../locale/de/LC_MESSAGES/Realtime.po | 7 +- .../locale/fr/LC_MESSAGES/Realtime.po | 7 +- .../locale/ia/LC_MESSAGES/Realtime.po | 7 +- .../locale/lv/LC_MESSAGES/Realtime.po | 7 +- .../locale/mk/LC_MESSAGES/Realtime.po | 7 +- .../locale/ne/LC_MESSAGES/Realtime.po | 7 +- .../locale/nl/LC_MESSAGES/Realtime.po | 7 +- .../locale/pl/LC_MESSAGES/Realtime.po | 7 +- .../locale/sv/LC_MESSAGES/Realtime.po | 7 +- .../locale/tl/LC_MESSAGES/Realtime.po | 7 +- .../locale/tr/LC_MESSAGES/Realtime.po | 7 +- .../locale/uk/LC_MESSAGES/Realtime.po | 7 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 7 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 7 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 7 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- .../ReverseUsernameAuthentication.po | 7 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 7 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 7 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 7 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 7 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 7 +- .../locale/he/LC_MESSAGES/SQLStats.po | 7 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 7 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 7 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 7 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 7 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 7 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 7 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 7 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 7 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 7 +- .../locale/de/LC_MESSAGES/SearchSub.po | 7 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 7 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 7 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 7 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 7 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 7 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 7 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 7 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 7 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 7 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 7 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 7 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 7 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 7 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 7 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 7 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 7 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 7 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 7 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 7 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 7 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 7 +- .../locale/de/LC_MESSAGES/SubMirror.po | 7 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 7 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 7 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 7 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 7 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 7 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 7 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 7 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 7 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 7 +- .../locale/de/LC_MESSAGES/TabFocus.po | 7 +- .../locale/es/LC_MESSAGES/TabFocus.po | 7 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 7 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/he/LC_MESSAGES/TabFocus.po | 7 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 7 +- .../locale/id/LC_MESSAGES/TabFocus.po | 7 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 7 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 7 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 7 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 7 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 7 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 7 +- .../locale/es/LC_MESSAGES/TightUrl.po | 7 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 7 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 7 +- .../locale/he/LC_MESSAGES/TightUrl.po | 7 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 7 +- .../locale/id/LC_MESSAGES/TightUrl.po | 7 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 7 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 7 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 7 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 7 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 7 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 7 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 7 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 7 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 7 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 7 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 7 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 7 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 7 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 17 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 7 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 7 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 7 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 7 +- .../locale/de/LC_MESSAGES/UserFlag.po | 7 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 7 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 7 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 7 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 7 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 7 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 7 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 7 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 7 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 7 +- .../locale/de/LC_MESSAGES/UserLimit.po | 7 +- .../locale/es/LC_MESSAGES/UserLimit.po | 7 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 7 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 7 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 7 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 7 +- .../locale/he/LC_MESSAGES/UserLimit.po | 7 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 7 +- .../locale/id/LC_MESSAGES/UserLimit.po | 7 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 7 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 7 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 7 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 7 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 7 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 7 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 7 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 7 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 7 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 7 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 7 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 7 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 7 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 7 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 7 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 7 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 7 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 7 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 7 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 7 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 7 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 7 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 7 +- .../locale/de/LC_MESSAGES/YammerImport.po | 12 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 7 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 7 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 7 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 7 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 7 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 7 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 7 +- 1563 files changed, 10048 insertions(+), 6549 deletions(-) create mode 100644 plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po create mode 100644 plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po create mode 100644 plugins/Aim/locale/eu/LC_MESSAGES/Aim.po create mode 100644 plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Blog/locale/eu/LC_MESSAGES/Blog.po create mode 100644 plugins/Blog/locale/fr/LC_MESSAGES/Blog.po create mode 100644 plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Directory/locale/eu/LC_MESSAGES/Directory.po create mode 100644 plugins/Directory/locale/gl/LC_MESSAGES/Directory.po create mode 100644 plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po create mode 100644 plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po create mode 100644 plugins/Event/locale/eu/LC_MESSAGES/Event.po create mode 100644 plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po create mode 100644 plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po create mode 100644 plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po create mode 100644 plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po create mode 100644 plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po create mode 100644 plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po create mode 100644 plugins/Imap/locale/eu/LC_MESSAGES/Imap.po create mode 100644 plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po create mode 100644 plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/Msn/locale/eu/LC_MESSAGES/Msn.po create mode 100644 plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/OMB/locale/eu/LC_MESSAGES/OMB.po create mode 100644 plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po create mode 100644 plugins/Poll/locale/eu/LC_MESSAGES/Poll.po create mode 100644 plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/QnA/locale/eu/LC_MESSAGES/QnA.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 732b660b9d..266857706f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:28+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9662,48 +9663,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "Public list cloud" -#~ msgstr "سحابة اللائحات العمومية" - -#~ msgid "These are largest lists on %s" -#~ msgstr "هذه هي أكبر اللائحات على %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "لم [يدرج](%%doc.tags%%) أحد أحدًا إلى الآن." - -#~ msgid "Be the first to list someone!" -#~ msgstr "كن الأول من يشترك بلائحة أحد ما !" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "لم لا [تسجل حسابا](%%action.register%%) وتكون أول من يدرج شخصا!" - -#~ msgid "List cloud" -#~ msgstr "سحابة اللائحات" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "لا أحد مدرج" -#~ msgstr[1] "شخص واحد مدرج" -#~ msgstr[2] "شخصان مدرجان" -#~ msgstr[3] "%d أشخاص مدرجون" -#~ msgstr[4] "%d شخصًا مدرجًا" -#~ msgstr[5] "%d شخص مدرج" - -#~ msgid "All subscribers" -#~ msgstr "جميع المشتركين" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "شارة" - -#~ 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 شخص هذا الإشعار" diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index ebb2f208f1..e3fb574ef0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:31+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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. @@ -1980,69 +1981,65 @@ msgstr "Няма такога дакумэнта «%s»." #. TRANS: Menu item in personal group navigation menu. msgctxt "MENU" msgid "Home" -msgstr "" +msgstr "Галоўная старонка" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Дакумэнтацыя" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" -msgstr "" +msgstr "Дапамога" -#, fuzzy msgid "Getting started" -msgstr "Налады захаваныя." +msgstr "Пачатак працы" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" -msgstr "" +msgstr "Пра" -#, fuzzy msgid "About this site" -msgstr "Разблякаваць гэтага карыстальніка" +msgstr "Інфармацыя пра гэты сайт" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" msgid "FAQ" -msgstr "" +msgstr "Частыя пытаньні" msgid "Frequently asked questions" -msgstr "" +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 "" +msgstr "Кантакты" msgid "Contact info" -msgstr "" +msgstr "Кантактная інфармацыя" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Тэгі" msgid "Using tags" -msgstr "" +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 "" +msgstr "Групы" -#, fuzzy msgid "Using groups" -msgstr "Групы %s" +msgstr "Выкарыстоўваемыя групы" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -5135,7 +5132,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5146,7 +5143,7 @@ msgstr "" "(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." @@ -5186,37 +5183,37 @@ msgstr "Прыватная стужка паведамленьняў для Ва #. 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. @@ -5224,11 +5221,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). @@ -5237,11 +5234,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. @@ -5252,82 +5251,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 "" +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. @@ -5336,6 +5337,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. @@ -5346,6 +5349,11 @@ 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. @@ -5355,37 +5363,40 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" +"**%s** мае рахунак на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en." +"wikipedia.org/wiki/Micro-blogging), які працуе на базе вольнага праграмнага " +"забесьпячэньня [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." @@ -5399,66 +5410,67 @@ 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" @@ -9492,30 +9504,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "Public list cloud" -#~ msgstr "Воблака публічных сьпісаў" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Гэта самыя вялікія сьпісы на %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Пакуль што ніхто не дадаў да [сьпісаў](%%doc.tags%%)." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Будзьце першым, хто стварыў сьпіс!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "Чаму не [стварыць рахунак](%%action.register%%) і стаць першым, хто " -#~ "створыць новы сьпіс!" - -#~ msgid "List cloud" -#~ msgstr "Воблака сьпісаў" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "%d асоба ў сьпісе" -#~ msgstr[1] "%d асобы ў сьпісе" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 8bf734abd2..04f2e38ae1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:33+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9807,29 +9808,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Общ поток, страница %d" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Това са хората, които четат бележките на %s." - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Не е открит методът в API." - -#~ msgid "All subscribers" -#~ msgstr "Всички абонати" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Табелка" - -#, fuzzy -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "Вече сте повторили тази бележка." -#~ msgstr[1] "Вече сте повторили тази бележка." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 41d6753cd5..1def9dd186 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+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. @@ -9670,40 +9671,3 @@ msgstr "XML direizh, mankout a ra ar wrizienn XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Koumoulenn a merkoù foran" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Ar merkoù ziwezhañ evit ar re vrudetañ war %s " - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Bezit an hini gentañ oc'h embann unan !" - -#, fuzzy -#~ 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 !" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "N'eo ket bet kavet an implijer." - -#~ msgid "All subscribers" -#~ msgstr "An holl goumananterien" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Badj" - -#, fuzzy -#~ 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." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index acf4fe5592..528b6d8f80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:37+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -1983,25 +1984,23 @@ msgstr "Inici" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documents" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#, fuzzy msgid "Getting started" -msgstr "S'ha desat la configuració." +msgstr "Primers passos" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "Quant a" -#, fuzzy msgid "About this site" -msgstr "Desbloca l'usuari" +msgstr "Quant a aquest lloc" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2009,7 +2008,7 @@ msgid "FAQ" msgstr "Preguntes més freqüents" msgid "Frequently asked questions" -msgstr "" +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, ... @@ -2017,17 +2016,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Contacte" -#, fuzzy msgid "Contact info" -msgstr "Contacte" +msgstr "Informació de contacte" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etiquetes" msgid "Using tags" -msgstr "" +msgstr "Ús de les etiquetes" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2036,16 +2033,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Grups" -#, fuzzy msgid "Using groups" -msgstr "Grups d'usuaris" +msgstr "Ús dels grups" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -5128,7 +5124,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5137,8 +5133,8 @@ msgid "" 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." @@ -5869,7 +5865,7 @@ msgstr "Aquestes són les persones que %s escolta." #. 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. -#, fuzzy, php-format +#, 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 " @@ -5879,9 +5875,7 @@ 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. @@ -7940,7 +7934,7 @@ 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 "" +msgstr "Torna a dalt" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8407,9 +8401,9 @@ 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 +#, 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." +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, @@ -9506,28 +9500,27 @@ msgstr[0] "A %%s li agrada." msgstr[1] "A %%s els hi agrada." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "Heu repetit l'avís." +msgstr "Ho heu repetit." #. 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 +#, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "A %%s i a %d altres els hi agrada." -msgstr[1] "A %%s i a %d els hi agrada." +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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "A %%s li agrada." -msgstr[1] "A %%s els hi agrada." +msgstr[0] "%%s ho ha repetit." +msgstr[1] "%%s ho han repetit." #. TRANS: Form legend. #, php-format @@ -9712,42 +9705,3 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." - -#~ msgid "Public list cloud" -#~ msgstr "Núvol públic de llistes" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Aquestes són les llistes més extenses a %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Ningú ha [llistat](%%doc.tags%%) encara ningú." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Sigueu el primer en llistar algú!" - -#~ 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ú!" - -#~ msgid "List cloud" -#~ msgstr "Núvol de llistes" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "S'ha llistat 1 persona" -#~ msgstr[1] "S'han llistat %d persones" - -#~ msgid "All subscribers" -#~ msgstr "Tots els subscriptors" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insígnia" - -#~ 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." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f8302dc9fd..3344bc8227 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:39+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -10059,46 +10060,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Veřejný tag cloud" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Poslední nejpopulárnější značky na %s " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Nikdo ještě neposlal oznámení s [tagem](%%doc.tags%%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Pošlete něco jako první!" - -#, fuzzy -#~ 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í!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr " API metoda nebyla nalezena." - -#~ msgid "All subscribers" -#~ msgstr "Všichni odběratelé" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Odznak" - -#, fuzzy -#~ 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í." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index df9434ddc8..8e2dfeda43 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -455,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" @@ -1839,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,79 +2001,70 @@ 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. -#, fuzzy msgctxt "MENU" msgid "Home" -msgstr "Homepage" +msgstr "Startseite" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Dokumentation" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Hilfe" -#, fuzzy msgid "Getting started" -msgstr "Einstellungen gespeichert." +msgstr "Erste Schritte" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "Über" -#, fuzzy msgid "About this site" -msgstr "Diesen Benutzer freigeben" +msgstr "Über diese Seite" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +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, ... -#, fuzzy msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#, fuzzy msgid "Contact info" -msgstr "Kontakt" +msgstr "Kontaktinformationen" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Tags" msgid "Using tags" -msgstr "" +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. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "Gruppen" -#, fuzzy msgid "Using groups" -msgstr "Benutzer-Gruppen" +msgstr "Gruppen verwenden" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2809,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." @@ -3505,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. @@ -3839,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. @@ -3969,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-" @@ -3981,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). @@ -4003,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-" @@ -4014,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. @@ -4315,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. @@ -4526,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!" @@ -4580,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." @@ -4597,7 +4582,6 @@ msgid "Registration successful" msgstr "Registrierung erfolgreich" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrieren" @@ -4607,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." @@ -4630,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" @@ -4649,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" @@ -4966,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. @@ -5029,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" @@ -5232,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." @@ -5325,9 +5300,8 @@ 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. @@ -5454,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" @@ -5494,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" @@ -6050,10 +6021,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" @@ -6139,9 +6109,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]" @@ -6214,7 +6183,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" @@ -6260,7 +6228,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" @@ -6363,13 +6330,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)" @@ -6546,24 +6511,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." @@ -6571,9 +6535,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. @@ -6624,19 +6588,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 @@ -6709,7 +6670,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" @@ -6809,7 +6769,6 @@ msgid "Send a direct message to this user." msgstr "Direkte Nachricht an Benutzer versenden" #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Nachricht" @@ -6847,7 +6806,6 @@ msgid "Show more" msgstr "Mehr anzeigen" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Antworten" @@ -6858,7 +6816,6 @@ msgid "Write a reply..." msgstr "Antwort verfassen..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6935,7 +6892,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“" @@ -6949,9 +6906,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." @@ -6962,9 +6918,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. @@ -6978,9 +6933,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 @@ -6993,10 +6948,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." @@ -7027,13 +6982,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Homepage" +msgstr "Startseite" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Admin" @@ -7052,7 +7005,6 @@ msgid "User configuration" msgstr "Benutzereinstellung" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Benutzer" @@ -7062,7 +7014,6 @@ msgid "Access configuration" msgstr "Zugangskonfiguration" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Zugang" @@ -7090,7 +7041,6 @@ msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Seitennachricht" @@ -7100,17 +7050,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" @@ -7667,16 +7615,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" @@ -7695,7 +7641,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" @@ -7777,10 +7722,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" @@ -7788,10 +7732,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" @@ -7828,10 +7771,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" @@ -7867,17 +7809,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" +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. @@ -7957,7 +7897,6 @@ msgid "Feeds" msgstr "Feeds" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Alle" @@ -7967,7 +7906,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" @@ -7985,16 +7923,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" @@ -8014,17 +7950,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 "" @@ -8087,20 +8022,17 @@ 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." @@ -8237,18 +8169,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" @@ -8362,9 +8291,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. @@ -8767,9 +8696,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. @@ -8777,7 +8705,6 @@ msgid "from" msgstr "von" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "Web" @@ -8788,7 +8715,6 @@ msgid "xmpp" msgstr "XMPP" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" msgstr "E-Mail" @@ -8828,7 +8754,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." @@ -8917,14 +8843,12 @@ 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" @@ -8936,9 +8860,8 @@ msgid "Delete this notice from the timeline." msgstr "Nachricht 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..." @@ -9000,7 +8923,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" @@ -9018,14 +8940,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" @@ -9037,7 +8957,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" @@ -9058,7 +8977,6 @@ msgid "Edit" msgstr "Bearbeiten" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Privat" @@ -9152,39 +9070,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" @@ -9218,9 +9130,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" @@ -9238,14 +9149,12 @@ 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 @@ -9341,7 +9250,6 @@ msgid "Page not found." msgstr "Seite nicht gefunden." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" msgstr "Spielwiese" @@ -9644,15 +9552,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" @@ -9732,7 +9638,6 @@ msgid "Error opening theme archive." msgstr "Fehler beim Öffnen des Theme-Archives." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Nachrichten" @@ -9752,10 +9657,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 @@ -9997,52 +9902,3 @@ msgstr "Ungültiges XML, XRD-Root fehlt." #, php-format msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Öffentliche Tag-Wolke" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Das sind die beliebtesten Tags auf „%s“" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc." -#~ "tags%%)“ gepostet." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Sei der erste, der etwas schreibt!" - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "API-Methode nicht gefunden." - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 Person aufgeführt" -#~ msgstr[1] "%d Personen aufgeführt" - -#~ msgid "All subscribers" -#~ msgstr "Alle Abonnenten" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Plakette" - -#, fuzzy -#~ 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" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d5a3d334a1..1d9b60443d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:42+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9833,37 +9834,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Public tag cloud" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "These are most popular recent tags on %s " - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "API method not found." - -#~ msgid "All subscribers" -#~ msgstr "All subscribers" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Badge" - -#, fuzzy -#~ 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." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 417e29d2a5..9db1bd31bd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:44+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9906,44 +9907,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Publika markil-nubo" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Jen la plej popularaj entikedoj lastatempaj ĉe %s " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Estu la unua afiŝanto!" - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Listo ne ekzistas." - -#~ msgid "All subscribers" -#~ msgstr "Ĉiuj abonantoj" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insigno" - -#, fuzzy -#~ 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." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 4e1d1a1a8f..89897c2650 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -10018,46 +10019,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Nube de etiquetas pública" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Estas son las etiquetas recientes más populares en %s" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "¡Sé la primera persona en publicar!" - -#, fuzzy -#~ 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?" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Método de API no encontrado." - -#~ msgid "All subscribers" -#~ msgstr "Todos los suscriptores" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insignia" - -#, fuzzy -#~ 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." diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index f0ddaa7295..8b776d8009 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" @@ -1967,25 +1968,23 @@ msgstr "Etxea" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Dokumentuak" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Laguntza" -#, fuzzy msgid "Getting started" -msgstr "Ezarpenak gordeak." +msgstr "Lehen urratsak" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "Honi buruz" -#, fuzzy msgid "About this site" -msgstr "Desblokeatu erabiltzaile hau" +msgstr "Gune honi buruz" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1993,7 +1992,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Ohiko galderak" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2001,17 +2000,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Kontaktatu" -#, fuzzy msgid "Contact info" msgstr "Kontaktatu" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etiketak" msgid "Using tags" -msgstr "" +msgstr "Etiketa erabiliak" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2020,16 +2017,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Taldeak" -#, fuzzy msgid "Using groups" -msgstr "Erabiltzailearen taldeak" +msgstr "Talde erabiliak" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2450,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. @@ -2738,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." @@ -2956,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 "" @@ -3158,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." @@ -3312,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 @@ -4440,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. @@ -4523,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." @@ -4544,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." @@ -5052,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." @@ -5118,17 +5113,17 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests." msgstr "" -"**%s** [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." @@ -5222,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. @@ -5856,7 +5851,7 @@ msgstr "%s erabiltzaileak jende hauen oharrak jarraitzen ditu." #. 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. -#, fuzzy, php-format +#, 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 " @@ -5864,11 +5859,9 @@ msgid "" "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. @@ -6602,7 +6595,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." @@ -6731,7 +6724,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 "(". @@ -6770,17 +6763,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." @@ -7921,7 +7914,7 @@ msgstr "Partaide zaren taldeak ikusi." #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Itzuli gora" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8385,7 +8378,7 @@ 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 +#, 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." @@ -8451,7 +8444,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." @@ -8979,7 +8972,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" @@ -8995,7 +8988,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. @@ -9372,7 +9365,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." @@ -9485,7 +9478,6 @@ msgstr[0] "%%s(e)k hau atsegin du." msgstr[1] "%%s(e)k hau atsegin dute." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." msgstr "Ohar hau errepikatu duzu." @@ -9493,20 +9485,20 @@ msgstr "Ohar hau errepikatu duzu." #. 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 +#, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "%%s eta hau bezalako beste %d." -msgstr[1] "%%s eta hau bezalako beste %d." +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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "%%s(e)k hau atsegin du." -msgstr[1] "%%s(e)k hau atsegin dute." +msgstr[0] "%%s(e)k hau errepikatu du." +msgstr[1] "%%s(e)k hau errepikatu dute." #. TRANS: Form legend. #, php-format @@ -9691,42 +9683,3 @@ msgstr "XML baliogabea, XRD erroa falta da." #, php-format msgid "Getting backup from file '%s'." msgstr "'%s'-ren babeskopia eskuratzen." - -#~ msgid "Public list cloud" -#~ msgstr "Zerrenda publikoen hodeia" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Hauek dira zerrenda luzeenak %s(e)n" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Inork ez du beste inor [zerrendatu](%%doc.tags%%) oraindik." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Izan zaitez lehena norbait zerrendaratzen!" - -#~ 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!" - -#~ msgid "List cloud" -#~ msgstr "Zerrenden hodeia" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "Pertsona 1 zerrendatuta" -#~ msgstr[1] "%d pertsona zerrendatuta" - -#~ msgid "All subscribers" -#~ msgstr "Harpidedun guztiak" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Txertatu" - -#~ 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." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index eb778191a3..47af5f1a83 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:49+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-POT-Import-Date: 2011-09-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9978,44 +9979,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "ابر برچسب عمومی" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "این‌ها محبوب‌ترین برچسب‌های اخیر روی %s هستند " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "اولین نفری باشید که چیزی می‌فرستد!" - -#, fuzzy -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمی‌کنید و اولین نفری " -#~ "باشید که چیزی می‌فرستد!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "رابط مورد نظر پیدا نشد." - -#~ msgid "All subscribers" -#~ msgstr "تمام مشترک‌ها" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "نشان" - -#, fuzzy -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "قبلا آن پیام تکرار شده است." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index adea8ffdcd..f940c94b13 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -9767,47 +9768,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Julkinen tagipilvi" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " -#~ "vielä." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Ole ensimmäinen joka lähettää päivityksen!" - -#, fuzzy -#~ 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)!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "API-metodia ei löytynyt." - -#~ msgid "All subscribers" -#~ msgstr "Kaikki tilaajat" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Tönäise" - -#, fuzzy -#~ 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." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index db08e5d4e3..1db74322ec 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -30,17 +30,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9953,51 +9954,3 @@ msgstr "XML invalide, racine XRD manquante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Nuage de marques public" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Ces étiquettes récentes sont les plus populaires sur %s" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%" -#~ "%)." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Soyez le premier sur la liste quelqu’un !" - -#, fuzzy -#~ 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 !" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Page non trouvée." - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 personne listée" -#~ msgstr[1] "%d personnes listées" - -#~ msgid "All subscribers" -#~ msgstr "Tous les abonnés" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insigne" - -#, fuzzy -#~ 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." diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 7132006461..d08edcc66b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:55+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-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -9410,38 +9411,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "Public list cloud" -#~ msgstr "Nûl des listis publichis" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Chestis a son lis listis plui popolârs su %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Nissun nol à ancjemò metût altris in [listis](%%%%doc.tags%%%%)." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Met cualchidun in liste par prin!" - -#~ 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!" - -#~ msgid "List cloud" -#~ msgstr "Nûl des listis" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 persone in liste" -#~ msgstr[1] "%d personis in liste" - -#~ msgid "All subscribers" -#~ msgstr "Ducj i sotscritôrs" - -#~ 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." diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index a95fac1c3b..f2d1c780fa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:57+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -1994,7 +1995,7 @@ msgstr "Inicio" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documentos" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" @@ -2053,7 +2054,7 @@ msgstr "Grupos do usuario" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -8164,7 +8165,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 @@ -9893,45 +9894,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Nube de etiquetas públicas" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Estas son as etiquetas máis populares en %s " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Sexa o primeiro en publicar unha!" - -#, fuzzy -#~ 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?" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Non se atopou o método da API." - -#~ msgid "All subscribers" -#~ msgstr "Todos os subscritores" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insignia" - -#, fuzzy -#~ 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." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index c96d03644b..3d9ecc74c1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:58+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -6433,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 "(". @@ -9262,11 +9263,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "All subscribers" -#~ msgstr "כל המנויים" - -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "אדם אחד הדהד את העדכון הזה." -#~ msgstr[1] "%d אנשים הדהדו את העדכון הזה." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 83977aeff4..6ca0fa90d2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:00+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9618,39 +9619,3 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." #, php-format msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Zjawna časowa lajsta, strona %d" - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Budź prěni, kiž tajki pisa!" - -#, fuzzy -#~ 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ć?" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Wužiwar njenamakany." - -#~ msgid "All subscribers" -#~ msgstr "Wšitcy abonenća" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Plaketa" - -#, fuzzy -#~ 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." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index a1bde88ad2..404eb4bfdf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+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-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -9737,20 +9738,3 @@ msgstr "Érvénytelen XML, hiányzó XRD gyökér." #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "List cloud" -#~ msgstr "Listafelhő" - -#~ msgid "All subscribers" -#~ msgstr "Minden feliratkozott" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Megbök" - -#, fuzzy -#~ 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." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index cbae495456..e5edf2bebe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -1971,25 +1972,23 @@ msgstr "Initio" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documentation" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Adjuta" -#, fuzzy msgid "Getting started" -msgstr "Preferentias confirmate." +msgstr "Como initiar" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "A proposito" -#, fuzzy msgid "About this site" -msgstr "Disblocar iste usator" +msgstr "A proposito de iste sito" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1997,7 +1996,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Folio a questiones" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2005,17 +2004,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#, fuzzy msgid "Contact info" -msgstr "Contacto" +msgstr "Information de contacto" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etiquettas" msgid "Using tags" -msgstr "" +msgstr "Como usar etiquettas" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2024,16 +2021,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Gruppos" -#, fuzzy msgid "Using groups" -msgstr "Gruppos de usatores" +msgstr "Como usar gruppos" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "API conforme a REST" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -5105,7 +5101,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5114,8 +5110,8 @@ msgid "" 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." @@ -5842,7 +5838,7 @@ msgstr "%s seque le notas de iste personas." #. 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. -#, fuzzy, php-format +#, 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 " @@ -5852,9 +5848,7 @@ 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. @@ -7901,7 +7895,7 @@ 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 "" +msgstr "Retornar in alto" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8366,9 +8360,9 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s ha adherite al gruppo %2$s in %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, @@ -9475,28 +9469,27 @@ msgstr[0] "%%s apprecia isto." msgstr[1] "%%s apprecia isto." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "Tu ha repetite iste nota." +msgstr "Tu ha repetite isto." #. 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 +#, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "%%s e %d alteres apprecia isto." -msgstr[1] "%%s e %d alteres apprecia isto." +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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "%%s apprecia isto." -msgstr[1] "%%s apprecia isto." +msgstr[0] "%%s ha repetite isto." +msgstr[1] "%%s ha repetite isto." #. TRANS: Form legend. #, php-format @@ -9681,42 +9674,3 @@ msgstr "XML invalide, radice XRD mancante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." - -#~ msgid "Public list cloud" -#~ msgstr "Listario public" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Istes es le listas le plus grande in %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Nemo ha ancora [listate](%%doc.tags%%) alcuno." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Sia le prime a listar alcuno!" - -#~ 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?" - -#~ msgid "List cloud" -#~ msgstr "Listario" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 persona listate" -#~ msgstr[1] "%d personas listate" - -#~ msgid "All subscribers" -#~ msgstr "Tote le subscriptores" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Insignia" - -#~ 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." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 73085a14f4..289d701780 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:05+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9984,45 +9985,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Insieme delle etichette" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Queste sono le etichette più usate e recenti su %s " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Nessuno ha ancora scritto un messaggio con un [hashtag](%%doc.tags%%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Scrivilo tu!" - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Metodo delle API non trovato." - -#~ msgid "All subscribers" -#~ msgstr "Tutti gli abbonati" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Badge" - -#, fuzzy -#~ 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." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 686ee65d72..5a9e9252a2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -1228,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. @@ -1952,18 +1953,16 @@ msgctxt "MENU" msgid "Help" msgstr "ヘルプ" -#, fuzzy msgid "Getting started" -msgstr "設定が保存されました。" +msgstr "はじめに" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "" -#, fuzzy msgid "About this site" -msgstr "このユーザーをアンブロックする" +msgstr "このサイトについて" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1979,11 +1978,9 @@ msgctxt "MENU" msgid "Contact" msgstr "連絡先" -#, fuzzy msgid "Contact info" -msgstr "連絡先" +msgstr "連絡先の情報" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "タグ" @@ -1998,9 +1995,8 @@ msgctxt "MENU" msgid "Groups" msgstr "グループ" -#, fuzzy msgid "Using groups" -msgstr "ユーザーグループ" +msgstr "グループを使用する" msgctxt "MENU" msgid "API" @@ -2894,7 +2890,7 @@ msgstr[0] "" #, 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 @@ -6108,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. @@ -6375,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). @@ -6745,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." @@ -7980,7 +7976,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s\n" +"%2$s" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -8252,9 +8248,9 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%3$s のあなたのグループ %2$s に %1$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, @@ -9344,10 +9340,9 @@ msgid_plural "%%s like this." msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "そのつぶやきをリピートしました。" +msgstr "そのつぶやきをリピートしました" #. 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. @@ -9360,10 +9355,10 @@ 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 +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "%s さんへリピート" +msgstr[0] "" #. TRANS: Form legend. #, php-format @@ -9544,32 +9539,3 @@ msgstr "無効なXMLです、XRD root が誤っています" #, php-format msgid "Getting backup from file '%s'." msgstr "ファイル '%s' からバックアップを取得する。" - -#~ msgid "Public list cloud" -#~ msgstr "パブリックリストクラウド" - -#~ msgid "These are largest lists on %s" -#~ msgstr "これらは %s 上の最大のリストです。" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "まだ誰も [リスト](%%doc.tags%%) 付きのつぶやきを投稿していません。" - -#~ msgid "Be the first to list someone!" -#~ msgstr "リストの1番目になってください!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投" -#~ "稿をしてください!" - -#~ msgid "List cloud" -#~ msgstr "クラウドリスト" - -#~ msgid "All subscribers" -#~ msgstr "すべてのフォローされている" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "バッジ" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 3834ec8fee..8c45337b12 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:09+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9921,43 +9922,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "საჯარო სანიშნეების ღრუბელი." - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "ეს არის ყველაზე პოპულარული სანიშნეები %s–ზე " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "დაპოსტე პირველმა!" - -#, fuzzy -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "[დარეგისტრირდი](%%action.register%%) და დაპოსტე პირველმა!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "API მეთოდი ვერ მოიძებნა." - -#~ msgid "All subscribers" -#~ msgstr "ყველა გამომწერი" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "იარლიყი" - -#, fuzzy -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "ეს შეტყობინება უკვე გამეორებულია." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index d836fb8867..8949f01d3d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:10+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9547,31 +9548,3 @@ msgstr "XML이 잘못되었습니다. XRD 루트가 없습니다." #, php-format msgid "Getting backup from file '%s'." msgstr "'%s' 파일에서 백업을 가져옵니다." - -#~ msgid "Public list cloud" -#~ msgstr "공개 리스트 클라우드" - -#~ msgid "These are largest lists on %s" -#~ msgstr "다음은 %s에서 가장 인기 있는 리스트입니다." - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "아직 아무도 [리스트](%%doc.tags%%)가 없습니다." - -#~ msgid "Be the first to list someone!" -#~ msgstr "리스트에 넣는 첫번째 사람이 되세요!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "[계정을 등록해](%%action.register%%) 리스트에 넣는 첫번째 사람이 되세요!" - -#~ msgid "List cloud" -#~ msgstr "리스트 클라우드" - -#~ msgid "All subscribers" -#~ msgstr "모든 구독자" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "배지" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 9e21baf03e..70179b3bc0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -1971,25 +1972,23 @@ msgstr "Почетна" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Документи" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Помош" -#, fuzzy msgid "Getting started" -msgstr "Нагодувањата се зачувани" +msgstr "Како да почнете" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "За нас" -#, fuzzy msgid "About this site" -msgstr "Одблокирај го овој корсник" +msgstr "За ова мреж. место" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1997,7 +1996,7 @@ msgid "FAQ" msgstr "ЧПП" msgid "Frequently asked questions" -msgstr "" +msgstr "Често поставувани прашања" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2005,17 +2004,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#, fuzzy msgid "Contact info" -msgstr "Контакт" +msgstr "Контактни информации" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Ознаки" msgid "Using tags" -msgstr "" +msgstr "Употреба на ознаки" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2024,16 +2021,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Групи" -#, fuzzy msgid "Using groups" -msgstr "Кориснички групи" +msgstr "Употреба на групи" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -3296,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. @@ -5124,7 +5120,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5134,7 +5130,7 @@ 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." @@ -5864,7 +5860,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5874,8 +5870,7 @@ 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. @@ -7932,7 +7927,7 @@ msgstr "Сите групи кајшто членувате." #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Најгоре" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8398,7 +8393,7 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" msgstr "%1$s се зачлени во Вашата група %2$s на %3$s." @@ -9498,7 +9493,6 @@ msgstr[0] "%%s го бендисува ова." msgstr[1] "%%s го бендисуваат ова." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." msgstr "Ја повторивте забелешкава." @@ -9506,20 +9500,20 @@ msgstr "Ја повторивте забелешкава." #. 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 +#, 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[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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "%%s го бендисува ова." -msgstr[1] "%%s го бендисуваат ова." +msgstr[0] "%%s го повори ова." +msgstr[1] "%%s го повторија ова." #. TRANS: Form legend. #, php-format @@ -9705,42 +9699,3 @@ msgstr "Неважечки XML. Нема XRD-корен." #, php-format msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." - -#~ msgid "Public list cloud" -#~ msgstr "Облак од јавни списоци" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Ова се најпопуларните скорешни ознаки на %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Сè уште никој нема [наведено](%%doc.tags%%) никого на списокот." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Бидете првиот што ќе наведе некого!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "Зошто не [регистрирате сметка](%%action.register%%) и станете првиот што " -#~ "ќе наведе некого!" - -#~ msgid "List cloud" -#~ msgstr "Облак со списоци" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "Наведено е 1 лице" -#~ msgstr[1] "Наведени се %d лица" - -#~ msgid "All subscribers" -#~ msgstr "Сите претплатници" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Значка" - -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "Забелешкава ја има повторено едно лице." -#~ msgstr[1] "Забелешкава ја имаат повторено %d лица." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 5d51429784..43195e4107 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:14+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-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -9553,36 +9554,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ" - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുക!" - -#, fuzzy -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ " -#~ "വ്യക്തിയാകുകയും ചെയ്തുകൂട!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." - -#~ msgid "All subscribers" -#~ msgstr "എല്ലാ വരിക്കാരും" - -#, fuzzy -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." -#~ msgstr[1] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index b40aaf85f8..fdfe4dad33 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:17+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -7274,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" @@ -9932,46 +9933,3 @@ msgstr "Ugyldig XML, mangler XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Offentlig merkelappsky" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Dette er de siste mest populære merkelappene på %s " - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Vær den første til å poste en!" - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Bruker ikke funnet." - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 person listet opp" -#~ msgstr[1] "%d personer listet opp" - -#~ msgid "All subscribers" -#~ msgstr "Alle abonnenter" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Knuff" - -#, fuzzy -#~ 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." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 774d7d0f10..14e0efcdf2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -286,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. @@ -430,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." @@ -580,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. @@ -1081,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. @@ -1099,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." @@ -1142,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." @@ -2000,25 +2001,23 @@ msgstr "Hoofdmenu" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documentatie" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Help" -#, fuzzy msgid "Getting started" -msgstr "De instellingen zijn opgeslagen." +msgstr "Aan de slag" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "Over" -#, fuzzy msgid "About this site" -msgstr "Deblokkeer deze gebruiker." +msgstr "Over deze site" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2026,7 +2025,7 @@ msgid "FAQ" msgstr "Veel gestelde vragen" msgid "Frequently asked questions" -msgstr "" +msgstr "Veelgestelde vragen" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2034,17 +2033,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Contact" -#, fuzzy msgid "Contact info" -msgstr "Contact" +msgstr "Contactgegevens" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Labels" msgid "Using tags" -msgstr "" +msgstr "Labels gebruiken" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2053,16 +2050,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Groepen" -#, fuzzy msgid "Using groups" -msgstr "Gebruikersgroepen" +msgstr "Groepen gebruiken" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2264,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 @@ -2295,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. @@ -2383,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. @@ -2481,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. @@ -2503,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 @@ -2650,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." @@ -4495,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" @@ -4762,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. @@ -5106,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. @@ -5117,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 @@ -5161,7 +5157,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5171,7 +5167,7 @@ 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." @@ -5488,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." @@ -5906,7 +5902,7 @@ msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." #. 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. -#, fuzzy, php-format +#, 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 " @@ -7996,7 +7992,7 @@ 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 "" +msgstr "Terug naar boven" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8464,9 +8460,9 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s is lid geworden van de groep %2$s op %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, @@ -9574,7 +9570,6 @@ msgstr[0] "%%s vindt dit leuk." msgstr[1] "%%s vinden dit leuk." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." msgstr "U hebt deze mededeling herhaald." @@ -9582,20 +9577,20 @@ msgstr "U hebt deze mededeling herhaald." #. 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 +#, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "%%s en %d ander vinden dit leuk." -msgstr[1] "%%s en %d anderen vinden dit leuk." +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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "%%s vindt dit leuk." -msgstr[1] "%%s vinden dit leuk." +msgstr[0] "%%s heeft dit herhaald." +msgstr[1] "%%s hebben dit herhaald." #. TRANS: Form legend. #, php-format @@ -9780,42 +9775,3 @@ msgstr "Ongeldige XML. De XRD-root mist." #, php-format msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." - -#~ msgid "Public list cloud" -#~ msgstr "Publieke lijstwoordwolk" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Dit zijn de grootste lijsten op %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Niemand heeft nog iemand in een [lijst](%%doc.tags%%) opgenomen." - -#~ msgid "Be the first to list someone!" -#~ msgstr "U kunt de eerste zijn die iemand in een lijst opneemt!" - -#~ 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!" - -#~ msgid "List cloud" -#~ msgstr "Lijstwoordwolk" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "Eén persoon in lijst" -#~ msgstr[1] "%d personen in de lijst" - -#~ msgid "All subscribers" -#~ msgstr "Alle abonnees" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Widget" - -#~ 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." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 7715035fd5..42c196a73d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:19+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9979,48 +9980,3 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Publiczna chmura znaczników" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "To są najpopularniejsze ostatnie znaczniki w witrynie %s" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%" -#~ "%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Zostań pierwszym, który go wyśle." - -#, fuzzy -#~ 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." - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Nie odnaleziono strony." - -#~ msgid "All subscribers" -#~ msgstr "Wszyscy subskrybenci" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Odznaka" - -#, fuzzy -#~ 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." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 6c6a369960..6216a865a6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9987,45 +9988,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Nuvem de categorias pública" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Estas são as categorias recentes mais populares em %s " - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Ainda ninguém publicou uma nota com uma [categoria](%%doc.tags%%)." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Seja a primeira pessoa a publicar uma!" - -#, fuzzy -#~ 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!" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "Utilizador não encontrado." - -#~ msgid "All subscribers" -#~ msgstr "Todos os subscritores" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Emblema" - -#, fuzzy -#~ 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." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 448832bace..a880df4ec6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9827,46 +9828,3 @@ msgstr "XML inválido, raiz XRD perdida." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtendo um backup do arquivo '%s'." - -#, fuzzy -#~ msgid "Public list cloud" -#~ msgstr "Nuvem de etiquetas públicas" - -#, fuzzy -#~ msgid "These are largest lists on %s" -#~ msgstr "Estas são as etiquetas recentes mais populares no %s" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "" -#~ "Ninguém publicou nenhuma mensagem com a [etiqueta](%%doc.tags%%) ainda." - -#, fuzzy -#~ msgid "Be the first to list someone!" -#~ msgstr "Seja o primeiro a publicar uma!" - -#, fuzzy -#~ 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?" - -#, fuzzy -#~ msgid "List cloud" -#~ msgstr "O método da API não foi encontrado!" - -#~ msgid "All subscribers" -#~ msgstr "Todos os assinantes" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Mini-aplicativo" - -#, fuzzy -#~ 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." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 33952226c0..c05a907408 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9762,44 +9763,3 @@ msgstr "Неверный XML, отсутствует корень XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." - -#~ msgid "Public list cloud" -#~ msgstr "Облако открытых списков" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Самые большие списки на %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Пока никто никого не добавлял в [списки](%%doc.tags%%)." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Станьте первым! Начните новый список!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "Почему бы не [зарегистрироваться](%%action.register%%) и не создать новый " -#~ "список?" - -#~ msgid "List cloud" -#~ msgstr "Облако списков" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "%d человек в списке" -#~ msgstr[1] "%d человека в списке" -#~ msgstr[2] "%d человек в списке" - -#~ msgid "All subscribers" -#~ msgstr "Все подписчики" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Бедж" - -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "Запись повторена %d пользователем." -#~ msgstr[1] "Запись повторена %d пользователями." -#~ msgstr[2] "Запись повторена %d пользователями." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index ac0c5dcde1..6e5bd4a3b8 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2955,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 "" @@ -5147,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-" @@ -5158,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-" @@ -7303,13 +7303,13 @@ 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 "" @@ -7364,41 +7364,41 @@ 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 "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index fc287d8df2..9b9310bafd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:25+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9650,42 +9651,3 @@ msgstr "Ogiltig XML, saknar XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "Hämtar säkerhetskopia från filen '%s'." - -#~ msgid "Public list cloud" -#~ msgstr "Publikt listmoln" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Dessa är de största listorna på %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Ingen har [listat] (%%doc.tags%%) någon ännu." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Var den första att lista någon!" - -#~ 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!" - -#~ msgid "List cloud" -#~ msgstr "Listmoln" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] " 1 person listad" -#~ msgstr[1] " %d personer listade" - -#~ msgid "All subscribers" -#~ msgstr "Alla prenumeranter" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Emblem" - -#~ 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." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f5b89efe14..cedf48e024 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:27+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9662,44 +9663,3 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" - -#~ msgid "Public list cloud" -#~ msgstr "బహిరంగ జాబితా మేఘం" - -#~ msgid "These are largest lists on %s" -#~ msgstr "%sలో అత్యంత పెద్ద జాబితాలు ఇవి" - -#, fuzzy -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." - -#~ msgid "Be the first to list someone!" -#~ msgstr "మీరే ఇతరులను జాబితాలో పెట్టుకునే మొదటివారవ్వండి!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదటగా జాబితాలను సృష్టించేవారు ఎందుకు " -#~ "కాకూడదు!" - -#~ msgid "List cloud" -#~ msgstr "జాబితా మేఘం" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 వ్యక్తి" -#~ msgstr[1] "%d వ్యక్తులు" - -#~ msgid "All subscribers" -#~ msgstr "అందరు చందాదార్లు" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "బాడ్జీ" - -#, fuzzy -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "ఒక వ్యక్తి" -#~ msgstr[1] "%d వ్యక్తులు" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index ee8ff6b00f..6bd87e581a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-27 23:26:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -9960,42 +9961,3 @@ msgstr "Hindi katanggap-tanggap na XML, nawawalang ugat ng XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang '%s'" - -#~ msgid "Public list cloud" -#~ msgstr "Ulap ng pangmadlang talaan" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Ito ang mga pinakamalaking mga talaan sa %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Wala pang [nagtatala](%%doc.tags%%) ng sinuman." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Maging pinakauna sa pagtatala ng isang tao!" - -#~ 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!" - -#~ msgid "List cloud" -#~ msgstr "Itala ang ulap" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 taong naitala" -#~ msgstr[1] "%d mga taong naitala" - -#~ msgid "All subscribers" -#~ msgstr "Lahat ng mga nagpapasipi" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Tsapa" - -#~ 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." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 6b940e20eb..ca872bd380 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9785,44 +9786,3 @@ msgstr "Неправильний XML, корінь XRD відсутній." #, php-format msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." - -#~ msgid "Public list cloud" -#~ msgstr "Загальна хмарка списків" - -#~ msgid "These are largest lists on %s" -#~ msgstr "Це найдовші списки на %s" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "Поки що ніхто нікого не додав до [списків](%%doc.tags%%)." - -#~ msgid "Be the first to list someone!" -#~ msgstr "Станьте першим! Започаткуйте новий список!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "" -#~ "Чому б не [зареєструватись](%%%%action.register%%%%) і не створити новий " -#~ "список!" - -#~ msgid "List cloud" -#~ msgstr "Хмарка списку" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "1 користувач у списку" -#~ msgstr[1] "%d користувачів у списку" -#~ msgstr[2] "%d користувача у списку" - -#~ msgid "All subscribers" -#~ msgstr "Всі підписані" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "Бедж" - -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "Один користувач повторив цей допис." -#~ msgstr[1] "%d користувачів повторили цей допис." -#~ msgstr[2] "%d користувачів повторили цей допис." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index a20554e97c..6d25a4b093 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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-27 23:26:51+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -9442,38 +9443,3 @@ msgstr "不合法的XML, 缺少XRD根" #, php-format msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" - -#~ msgid "Public list cloud" -#~ msgstr "公开标签云" - -#~ msgid "These are largest lists on %s" -#~ msgstr "这些是 %s 上最流行的标签" - -#~ msgid "No one has [listed](%%doc.tags%%) anyone yet." -#~ msgstr "还没有人拥有 [名单] (%%doc.tags%%)。" - -#~ msgid "Be the first to list someone!" -#~ msgstr "成为第一个创建名单的人!" - -#~ msgid "" -#~ "Why not [register an account](%%action.register%%) and be the first to " -#~ "list someone!" -#~ msgstr "现在就[注册](%%action.register%%)并创建第一个名单!" - -#~ msgid "List cloud" -#~ msgstr "名单云" - -#~ msgid "1 person listed" -#~ msgid_plural "%d people listed" -#~ msgstr[0] "列表中有1人" - -#~ msgid "All subscribers" -#~ msgstr "所有关注者" - -#~ msgctxt "MENU" -#~ msgid "Badge" -#~ msgstr "挂件" - -#~ msgid "One person has repeated this notice." -#~ msgid_plural "%d people have repeated this notice." -#~ msgstr[0] "一人又重复本通知书。 " diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 4271e1c4bb..f51e526e1b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 bc84597b00..8315114412 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c2e4ee991..83e0e84551 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ceb624e6fe..a2e65e6491 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a8cc0433b9..b9b3851ef4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f9c4c52bb..efe73a3d92 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b74019c95d..d70f164b98 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b831b4f59f..a70e0e455a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 078022f3f0..004b2f0241 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e99b6e0b35..f382525c6a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f201716adb..6d33e7d250 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4cafb8ede6..dd7858e304 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d68cbe0114..609e95ce1a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 47d378e31d..f39e542de3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5872e24bbf..23ec528011 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 3b515d59bd..cc1f0eb735 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f6e9b20e3c..277b5c8cc9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f7e10e9723..71045ac2e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:37+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e711966889..cbe3f23f8f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3bf49d4aca..0cc8f9ccd3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b7da783e65..5284003384 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ce884dd48..af20f8df90 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ee95c0ff3..7f637f9365 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 a3bb0fbf71..c778e9a090 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:26+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 664cf56183..f1044bac55 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:27+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ede47d110a..232eeb5927 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 609590d622..3ef5dce968 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..898358739d --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" +"27)\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 e1214f9a63..eb0da82035 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8d22a6d8cb..9c823a0de2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index ebc10c5cb3..3e388b1c82 100644 --- a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:27+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 2f693ef0d1..60439d301b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f6b72d2a92..0b4952cc90 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b0362edb03..7502ce1774 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ecb9f2861f..c7990be903 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1465ff4f14..fe8e21b5a3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dc0bb97112..fb1f50cd17 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 236c9599f7..cca82313e6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a4b26bdb9e..4b9149c132 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b4a34b9b39..533c6a5265 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3489f61273..0ca5af1ab2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c704c140de..7b20d7f212 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 index c92b90246a..791152422e 100644 --- a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ar/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:29+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index 9dbf5f1248..8f94f4a4a4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index f094333de6..16c84aca3a 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po index e2534fc1df..ba7b3c3424 100644 --- a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/eu/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index 18e130bc74..92a00bc98f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index 1833a5f47f..c15c0d1769 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index 273af3830c..29d6cc0e59 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index 650511e8f3..cad2dcbe8b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d1b87b3767..ffe73813f9 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 4586de1232..f75e5422b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:31+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 55ffd7170e..eef3bb130c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d4219e701a..4b885966dc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8719a72414..bccb24de3a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2b4aa56cfa..8ef349ca27 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..377603fbc6 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f844a8b52..1ee81d57fb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 66853a4fd1..3e5a290deb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -72,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" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 033344d6cf..8e908765a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 700eced3be..f533b6311a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0d60842eaf..94882398b4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e520d11d3a..7048750292 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ef6767e624..ca5fc89ce6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5755a8aece..99d75b241f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9fa2fadad2..8fc50b7e98 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d210512799..456de99d0a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 55ff1a8a66..bca9b704fc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c155711040..14600c45f6 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 21fa4e5904..9e200847ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5365f0b46c..3c312077ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0c1fcbac81..2e6930bb1c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b7a4aa904e..3ce62ab784 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9622d9c3a5..954933eae5 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 9bdc7f50a5..9ef22c5d65 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:33+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c019c3e80..7747ddca0d 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index 77498479eb..d5b1661de8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f5b29636f0..b2d1d5a31c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..679e2a2e51 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 07a16d7251..03e57a8018 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2d8f1fea69..bdb5c3cc6a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6cd29e9e9d..c90e66a837 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 229acf3338..0bafde3b1d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 23956d02cf..9b1f81d8de 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 82d77edb03..db07d01471 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5dedbc2357..8ff809d9d7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6961d68d20..cea97a76aa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 594bb8c028..e429f6e6fc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2ce820c956..358512af0d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0c6c4e98a0..c28c66c78c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 10011af728..bb9bf24add 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1c1ecefc62..b09cf2c3f4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:35+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b525553fd2..d16297819c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7db452cc9a..c4ff125d87 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index ce748d2734..e6f1f0576c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 517c0d0e4a..6cd2c82c35 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ac451f118f..b16641b439 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8d2ef0d4d4..2d715758dd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d5582f4d91..37cc3dd154 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8edab04ce..0853a0e8c8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6daf219203..04f9a8893c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c99defd826..824a9bb0f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f345130d19..4f278ea1b3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ffd58a7ff2..6febbdbd58 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 83813fb059..2ed64c57b7 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 51b06756cd..0d1ea8f43c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:38+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 73837616dd..9937422da1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c2d8551a2c..e318d904e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index ae3341e873..3c4deb2d63 100644 --- a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index f454859b06..562ced51de 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5136e521a8..2841181c4c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5eb39372e8..086635ac51 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:38+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd0e6d9f11..41a8fe84d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4db9de6437..c065fe1da0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:39+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 76ab5ebc46..7b8fa25b43 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fc7a04bb23..27aafefd32 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e40535fcf8..8fc96a9ed7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 caffbf7962..8f1a8f0963 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 babd808803..06cdcf5ec4 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b85b4f0ec2..729519be39 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:40+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bbc001e889..28176db108 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c44099e76a..4cf12be0e8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3604b33792..44b8fb6e13 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 87d9efd4d5..c86876e4db 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c7940fdbda..2e5a0b07c0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5c9da04bce..b60118098c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aa14dc35bd..6c1febe014 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1c5932e01a..474b7a3cf2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ecd9d38f30..07e0880582 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 260b7bd09c..63278c023d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 78385fbda3..906a613964 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8b37667718..9e3d9de1d2 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 c29299f44f..12e55671ce 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:39+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 923b15486e..fea337ac76 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e656e80832..906757a749 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 04917aa118..ce7c6cd6af 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ac6d9125a8..614d76927e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..4f70f79741 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" +"27)\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 f2bfbdebf8..34e2a8c7f1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 8e79a7bcbb..e485dec5c0 100644 --- a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index b37994fcd1..68d80d58a4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d20c38ab2c..1dd39b88a6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 abcd2cee3c..64bec310a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bdaf0384a3..39fdd36a7f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 496704b28c..83ff618554 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 70e3fc273e..46753787ed 100644 --- a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index 5979fab1ee..e030a5cba6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a29e85f4af..5acd567578 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d201d6847c..ee4c424faf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e6e4c94d78..214b8b0f3c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 d24bb3ca7f..08de6dc922 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:42+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 24b6f750cb..18417676b1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71d78892bd..1d6e16734b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 12d48bae2a..685a3a24a2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index aea226811c..c2b112e884 100644 --- a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 0bd49afb15..37ffe226e8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ef9bdaae09..4e758bb04e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8cec89332..b7bf842070 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eac92bd628..be5237c4da 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a8b9e7ac30..10d4dd5d16 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ec86480b9..3b3cabcc3e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6898e0a050..375b127117 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 312b458acd..3063f31169 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c15c61c838..b7250c412e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 44d669def5..ab90074625 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 37bca21dd2..0fc13afcf1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 42fa26cdf4..c4a1cf7489 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index ddbe2315ed..f255583922 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ffe99a0257..d997fd4d6c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 49df8e367c..1b4235577d 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 2027a50069..8533ce0061 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8628a889a2..29f643921b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c7937ee72..a0b5125b35 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c04bf0f8d..b0cfa424ff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fd02496b8b..5ef0f16b47 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5f90c4f7c1..fc164dc0ec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fa07712ed8..a59a4d7827 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a9c15c1785..68a477ca01 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e2beadc8d9..9b2c88a61b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 8755024686..5b66cec396 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9da7a4341b..12693ace46 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3597848007..c4419574be 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 11c9461f8c..1dd0e2d931 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b54a1d8a37..161ce0dbb3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 47831582bd..17c748231c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d4070145d..c6e62dde60 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7dcdd9ce76..f5be51207c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 0d8d29c777..9d726d1a62 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c3cc83ce69..cce53fac99 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 160aca48d1..6d2ee6a128 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4cb9a5d333..704c6688d7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 11ecd093ea..14b86df9e8 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 66cf2afdf7..109ac00dcb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4fa86b9f66..9c64a050f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e5c75ac581..6373951b2d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9aa7ed979f..a80cb4a8bb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c995d40b04..5b1899dc87 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3bf79af85d..577b656060 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1a792da29a..dfba8d5a63 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 20541c63cc..c21fbda513 100644 --- a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index eb19470a20..4c393ba6ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e860ecb445..5da6108a64 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a27657a68a..0e05879ec1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dabf123edd..8cfeffaeeb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5c25c1765d..4bc8d57fe2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c856784522..357a88a9dd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3b3a873c3a..63fb0f3988 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 55f355ae16..0c995a5151 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cdff4d92b5..7758442662 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 393b781a95..d89325cce3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0a0565a38d..23ef41d99f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ea1ff76e69..51ebf9e5a7 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 8efd51c379..48461b110e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:50+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 757b1507ba..4dec7f3616 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 63ea9ddca0..4292dfb11a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 510ae3cc89..bf95f69818 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..b2a30535ca --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" +"27)\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..17d1404a0d --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 6b5664e02e..94255a5f8c 100644 --- a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index c89a44984d..2cb7e79052 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1207fa90e5..ee7036b67e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fadcd01712..d3973c5fb0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 64a9ec3dac..45df1a4121 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 e19750f0c4..4f11ba07e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f22da4c6d8..3f2b903e2a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3814336115..5eeea0ea44 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d4d1a6cca3..aab928280d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e35347b445..6787ae966e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d368b76bdd..9cc577492a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d1363005db..2a3b9d9b95 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4890f6403e..d2088cac47 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3d00549917..e977c43e9e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index ee08313495..913ffda3eb 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 1054c54913..ab03f3f8df 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:55+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 (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index 4e261ed007..2329a7208a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -270,6 +271,3 @@ msgstr "S'ha publicat l'adreça d'interès" #, php-format msgid "Getting backup from file \"%s\"." msgstr "S'està recuperant la còpia de seguretat del fitxer \"%s\"." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "L'adreça d'interès %1$s (avís %2$d) no té adjuncions." diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 04c3d296fd..662cb9d606 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -264,6 +265,3 @@ msgstr "Lesezeichen erstellt" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Hole Backup von Datei „%s“." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "Lesezeichen %1$s (Notiz %2$d) hat keine Anhänge." diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po index 2d1e8aa945..38adbf6233 100644 --- a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/eu/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -120,7 +121,7 @@ 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 "" -"Erregistratutako erabiltzaileek soilik inporta ditzakete del.icio.us " +"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. @@ -261,6 +262,3 @@ msgstr "Lastermarka bidali da" #, php-format msgid "Getting backup from file \"%s\"." msgstr "\"%s\" fitxategitik babeskopia lortzen." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "%1$s lastermarkak (%2$d oharra) ez du eranskinik." diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 11fa559418..21c8f2cfa8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -270,6 +271,3 @@ msgstr "Signet publié" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Obtention de la sauvegarde depuis le fichier \"%s\"." - -#~ 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." diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index c29e15a792..03e203f8b7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -266,6 +267,3 @@ msgstr "Marcapaginas placiate" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Obtene copia de reserva ex file \"%s\"." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "Le marcapaginas %1$s (nota %2$d) non ha annexos." diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 278316195a..9b9d015cb6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:55+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -260,6 +261,3 @@ msgstr "" #, php-format msgid "Getting backup from file \"%s\"." msgstr "ファイル \"%s\" からバックアップを取得する" - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "ブックマーク %1$s (つぶやき %2$d) は添付ファイルがありません" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 26f4a69d03..802483c500 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -263,6 +264,3 @@ msgstr "Одбележувачот е поставен" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Земам резерва на податотеката „%s“." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "Одбележувачот %1$s (забелешка %2$d) нема прилози." diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index e2b9fc2553..6a28ac54c8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -265,6 +266,3 @@ msgstr "De bladwijzer is geplaatst" #, php-format msgid "Getting backup from file \"%s\"." msgstr "De back-up wordt uit het bestand \"%s\" geladen." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "De bladwijzer %1$s (%2$d) heeft geen bijlagen." diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index 49ccc7976f..e35e2599db 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index fea671ed80..0e59e7444a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -268,6 +269,3 @@ msgstr "Ipinaskil na ang pananda." #, php-format msgid "Getting backup from file \"%s\"." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang \"%s\"." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "Ang panandang %1$s (pabatid na %2$d) ay walang mga kalakip." diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 77f6679aa0..ac5c70a906 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -262,6 +263,3 @@ msgstr "Закладку збережено" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Отримання резервної копії файлу «%s»." - -#~ msgid "Bookmark %1$s (notice %2$d) has no attachments." -#~ msgstr "Закладка %1$s (допис %2$d) має не вкладень." diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 597b2a3cdf..0c5f3e4277 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 2b3cdde6ed..f0bd25d685 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:56+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d12253bd3b..5355c2aeb8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:56+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4fc2251ced..480cda3f96 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f7691ba0f0..7d96408051 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 001119854b..f281ecd980 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 af5ddc926d..97a69ed05a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 8360de9dce..006e9d19f6 100644 --- a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 1dc3f4d67b..f2430a01d3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7a4b6116f5..9f5fe559e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1baa47c0d7..59e1c9f307 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 25533691e2..35b676f3dd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:57+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d547372aff..66054063b3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0400762c7c..868ee1ca21 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 78062d5b79..b52efc2429 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d1e04fe959..b8492f7c46 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bc8ab052c8..96be88fbdb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 899feb8367..0fb3e00167 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 da92f8b52a..21b9a2d85e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 c579382893..a85962d647 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:58+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ba1c6d750f..6e9e6b3a07 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 838b486748..cc2834526b 100644 --- a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index abc9d30530..a4cf1cf55a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a13e6cc3c1..67635386c0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..447c8344ea --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71a833ac8c..1c2ed873b4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 672aff2d57..4e6b74eb7f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:59+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8506023089..4e3306560c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6a597237cf..0f24c1523a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 acd1ff8f5d..44b42591f1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3779c34458..456a1aeea7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08:59+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cf6958f323..905f34a4a0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 039bad369c..7568c94f83 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d51538f84c..3e2768faf7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 110884f28e..4c91f6d376 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:08: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd3af706e9..69f94ebbea 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 4286e2ac20..20930adade 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7dc0b22e00..1d893c1b6d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 44c6c2c6a5..2155c1d04a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..8205435a01 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" +"27)\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 f249844d27..0c76c8f31f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index d4f125a392..ae2b073365 100644 --- a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 985b455a85..00be681983 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2aa332a1de..0cd1da9c1d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 074e3cfa97..97fa0ed1e1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c9e9f777b4..9f37e136c1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6da2f5b51c..85febd628b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:01+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2142ecdb7e..c99a067760 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4f8f3404f3..2044d8fb10 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 73765b989f..2803a1e17c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71ca9c56fc..966fc5578e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1fbef88af2..558274a148 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 db7a1bcc75..1b520f228e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 90f005377d..8b5a812270 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 92acc67de3..2bbc1e772f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 6548041bee..aa6cf40e76 100644 --- a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index be07633eca..d67262a71f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c1f64adfd..e7a88c864f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 25dc220e80..7b3fbe09d0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c46ea3186a..d87666f4b3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cebcba7f2a..e379766748 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b0f46ccb78..93e9d69925 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eb9610a0b6..a0d91355fa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1e8b496351..69c3554905 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 87105ecac9..d6f51c956a 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 87e9e6662d..0fb6f82450 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bded2b3717..1f08667794 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cf8bfb9822..df6df6227c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4431127ff2..281387477b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bab0fe2018..585573f988 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8bc9488943..a662fa35a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d05e1119aa..19740cf532 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index dd93968a35..e69299c922 100644 --- a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 1d34a9a36f..bc95568127 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 89f8880576..9a9f00abb0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2dd9b1e87b..144b400cda 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3e1853aaaf..0bc77b266e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e3f523c6bb..9074e9b036 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 05c924e2e9..7cdef850ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 294f6ce135..e15846ab73 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 69896e0992..94a8f432e5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b5fecc3cfb..65fb86c2bb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b95d36476c..31c6a8c542 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 63c8292d81..7efe8d61af 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd309ce91a..5813c5eb28 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 973791832a..e29f5e85f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aad8e80499..022a58101f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b1650961d6..d14aef9e1d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb00406fa8..95de2542a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index d0eda96bc9..85a8df3b50 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" 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..2d00d2c5ca --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0e7f87faa9..fe6b627b11 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:05+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 70db091860..0c33cf2eda 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..85f217b8d8 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e496582c4e..9e14050f49 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4323c3ea91..5463c7e6a9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0f1c5d77a..8298bc5a2b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7482861155..a630f56c61 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 53099a318c..dafeaa24b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3330961027..12ff7916da 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 28b2786687..772ad203fd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c437ece144..97b1af811c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 6758567950..ad2ab515c6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6b218876f2..25684ac199 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6ce1884db8..33d71ccc4e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f65f17926e..c709db52fa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3f5bdca58a..1c82f421a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7f349b4b99..f7e2376ca1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f1f3e0c6d7..ca9ae640f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 5fa0443ea1..9576eaba62 100644 --- a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index c54298de6e..363805fc53 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f75c2a83e2..c6e2c26acf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 323b8b3efa..34a59af8ba 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 621d85e06b..2816b96c94 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d9be4f41e2..4202433dd1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e464513d09..cbd0ea2a8c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a8e876aa9a..d3cfe4f25f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f3d30134bf..b7ecff51ee 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:07+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f58d49013d..14a22c891e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 91282942f8..3eba83ae6d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4044070a00..bce7ce7171 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 80291144fb..4a338dd923 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bed5a2f6d0..9749fc5a35 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 87663f0b8c..63bd2c953d 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 e8907de1b0..1e8725951c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b75d11e198..12a2b5f3f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:08+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 101d717b93..406fd6798a 100644 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:08+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 360521bdd9..20ca9b6784 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c5b59d44a3..39d7655908 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 efe3894174..28dc99f767 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f964423222..b7337e4c7e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e43e86d4b1..97ddef2795 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9201c4863c..d2e53cb4bd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ed7faabab8..5712be824a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2784836c0d..a234a925ae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bd56dbe3d9..b37677985e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 276afe63f9..35c2c9856d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a3938d1e5b..e67a5837db 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fd1e836499..a561167538 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index 40c3e37c5c..85619bbef4 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 a7315f1153..0d364e74fe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2f25b66c8f..5485bfbd9d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 3edcf921b2..14702213a2 100644 --- a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index 196fe11016..ac15268ac4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5df6f05ae9..5b2bc23610 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 56f9dd3103..261b355dec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b82edb1c1f..3acfc1e7b1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5aa1b74bd7..c423862455 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a41f7d2aea..140ace8867 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c740976f4c..e9e7c4f6ab 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a3b6b236bd..f79b72a76f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1ca615a4bc..5834cdcece 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 1d469b73e6..660bf8080a 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 8882082138..d05e654957 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 621f82dbe3..d8a4e2a9a0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f1820fab30..45230da230 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 40a0eb3ef0..b964f77fec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e45d8dfb5a..f9a8129df2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aacfb4482a..00d4a44e56 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4b6c46c8fe..2374296869 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 bb96cf7421..361076cb67 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e11fbb0bab..ffd72b332c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 22cc1fbe0b..324a466c59 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 94324884a0..d64b80a5b2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ab4abcfd56..a63962c758 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 746e81afd3..fd4819967f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ec2a7fda2f..893a502d57 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index e9636136ee..826c4bd1c8 100644 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:12+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 3d9fb31d22..20b1d91d20 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c60747c13..10ce9c5216 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 06914d1ebc..21bd7621e7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c28ed4ebac..7d8eaf7420 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9de6a91560..db4ac82b5a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b6e8c30619..a4a866d702 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f4aa22e58..acfd774043 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 573d8bb530..dd6fe9c5a5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4231731021..865a4d1256 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 056fdf6c8c..31833f8551 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 35e06e248e..551f1ec188 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d8c26c4f7..a35ad0cb0e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 09e31cd42f..058bd55aab 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c17aaf3419..83132f1408 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 41135a9ba0..be31089a97 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:13+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8e36cb77b..a969db4114 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d147c4f971..37d265b5a2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fa3ea9357f..811481308c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bde3619ef2..996a3692d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..8c9885f2d4 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b0441145ec..77edef81f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e28f5d3ffb..261a76f843 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index c83431d54c..14bbd22161 100644 --- a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index e557d7b235..74c426b4ce 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9d0ac376e3..ff708ba4cb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8e93ce5468..87c9b1b4cf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 23c87ff483..a60365c2df 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:14+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 86cefb45f3..457df3b2ce 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4af3f8b2a4..8f2bfc5518 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d492e8b9a9..ba41e4ef39 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 934ac3fb0a..9fbe7c4466 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3a256523bc..bdeaf4ef22 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:14+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0e73bc9b90..1a997b76d2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e5b71e1554..e340b6f41b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ab16161ed4..aa7111d0fb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3040fa056f..49b28d9e80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 94699632ee..1e8eafde02 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 c19934d29a..7117cc9334 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index 6495b1fb45..97669a7289 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 43c7534e22..4a6a6ae75d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index f89b50e027..68ef78922e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:38:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..a3b4596519 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0290a4deaf..7123bf058a 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index c733957a97..56f1a8da21 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:17+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6e17f051e7..88c85fa502 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 476ba02197..827b77fbba 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 76ac1973fe..646ecbe66f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0a024b4c95..2bb2ca9241 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b15c88ad4c..454ad25b24 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8c415342e3..1418d5282d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f13fa0451d..24e44874cb 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 c464a23822..e34c69b8f8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:18+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e93d5fb5a4..1f2c9182c9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..87007615e7 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" +"27)\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 b72d965436..63fdfc1b4a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 604bbdd3e9..21db653021 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6537113ad8..8152f5f282 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fe9b607749..bfceccd0dd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6f1a2d6b75..d5c029ef3c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 8dd33b50cf..c5dfe9fc95 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:19+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index a210264718..da94021121 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..aee0ab77f9 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" +"27)\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 d409e090d9..ab49b2bd0a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 24cb90a9cf..a992e34288 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d6c7fcb890..86dfea1a3d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4aefa53aea..196a32046c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ab90cc8a83..f6d8fab022 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/Event.pot b/plugins/Event/locale/Event.pot index 9b037481c3..c2336aeb94 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 096cec1a40..5fc0322a93 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +421,3 @@ msgstr "المكان:" #. TRANS: Field label for event description. msgid "Description:" msgstr "الوصف:" - -#~ msgid "Attending:" -#~ msgstr "الحضور:" - -#~ 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 124719b519..58b8cb706a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,6 +414,3 @@ msgstr "Lec'hiadur :" #. TRANS: Field label for event description. msgid "Description:" msgstr "Deskrivadur :" - -#~ 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 f1d455469c..7b3e4e0af8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -407,9 +408,3 @@ msgstr "Ubicació:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Descripció:" - -#~ msgid "Attending:" -#~ msgstr "Assistents:" - -#~ 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 3f4d57d361..edd6518f63 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,11 +70,11 @@ 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." @@ -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,9 +419,3 @@ msgstr "Örtlichkeit:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Beschreibung:" - -#~ msgid "Attending:" -#~ msgstr "Teilnehmende:" - -#~ 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..53ee164486 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2bb40fcc8e..720cc38227 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -422,9 +423,3 @@ msgstr "Lieu :" #. TRANS: Field label for event description. msgid "Description:" msgstr "Description :" - -#~ msgid "Attending:" -#~ msgstr "Participants :" - -#~ 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 index f3d615d2c5..e97e8c9701 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -64,7 +65,7 @@ msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "" +msgstr "Non iniciou sesión." #. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." @@ -175,7 +176,7 @@ msgstr "Data na que comeza o evento." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Start time" -msgstr "" +msgstr "Hora de inicio" #. TRANS: Field title on event form. %s is the abbreviated timezone #, php-format @@ -239,7 +240,7 @@ msgstr "" #. TRANS: Title for event application. msgctxt "TITLE" msgid "Event" -msgstr "" +msgstr "Evento" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." @@ -407,9 +408,3 @@ msgstr "Lugar:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Descrición:" - -#~ msgid "Attending:" -#~ msgstr "Participantes:" - -#~ msgid "Yes: %1$d No: %2$d Maybe: %3$d" -#~ msgstr "Si: %1$d Non: %2$d Quizais: %3$d" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 9c767055c8..394ac5a453 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +418,3 @@ msgstr "Loco:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Description:" - -#~ msgid "Attending:" -#~ msgstr "Presente:" - -#~ 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 228cac3ffc..394912fef7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +418,3 @@ msgstr "Место:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Опис:" - -#~ msgid "Attending:" -#~ msgstr "Присуство:" - -#~ 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 7a02e59a24..f8c6035f72 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:26+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +418,3 @@ msgstr "Lokasi:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Keterangan:" - -#~ msgid "Attending:" -#~ msgstr "Hadir:" - -#~ 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 8f66c8aaff..9dd3e9ddbb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +422,3 @@ msgstr "Locatie:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Beschrijving:" - -#~ msgid "Attending:" -#~ msgstr "Aanwezig:" - -#~ 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 7daee99e8f..651184ce49 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index ad7e2805be..93f78ba376 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +421,3 @@ msgstr "Kinalalagyan:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Paglalarawan:" - -#~ msgid "Attending:" -#~ msgstr "Dadalo:" - -#~ 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 154b7c0ccd..eda0fdd0a2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:08+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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,9 +421,3 @@ msgstr "Розташування:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Опис:" - -#~ msgid "Attending:" -#~ msgstr "Присутні:" - -#~ 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 4abb445555..50097b2512 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 f88e989ad4..506366ee37 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:29+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bb6a7a216c..ca80ec3506 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 66cac10d65..31130e2314 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index 5749077d00..e875d78196 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..fb1c391a3b --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 effdf16f06..1bd936aa0f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 612b109aa5..5a81c85156 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 716b719808..bc242160f0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4515f2977d..88e6d7252d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d480f92596..1b5cd32beb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cfc4706f6b..4c6bbdb69f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:30+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 be0d78b525..4553909b69 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c86b8f4f4a..80b3552ed4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2d0b0db8a9..027ea44080 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5506ebab0e..cb515927be 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index ff93b1124f..dacfc8daac 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index d5f3a92b73..3c2bd4180c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index d4f9c1190e..01457c9d39 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 7971fd318c..960edec414 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index 19f49b7487..4d911774b7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index c7d1718b86..4afafa72d9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:35+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 (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index e4e5efed18..a1170c6437 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -157,7 +158,7 @@ msgid "You have disconnected from Facebook." msgstr "Tu te ha disconnectite de Facebook." msgid "Unable to authenticate you with Facebook." -msgstr "" +msgstr "Impossibile authenticar te con Facebook." #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 6a2c1e8a9a..03696139e6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:35+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 (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mg\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 2b32d3748a..83d9de4bfa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -155,7 +156,7 @@ msgid "You have disconnected from Facebook." msgstr "Сега сте исклучени од Facebook." msgid "Unable to authenticate you with Facebook." -msgstr "" +msgstr "Не можам да Ве потврдам со Facebook." #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 4056cc99d7..79e90b415a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -159,7 +160,7 @@ msgid "You have disconnected from Facebook." msgstr "U bent losgekoppeld van Facebook." msgid "Unable to authenticate you with Facebook." -msgstr "" +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 "" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index 10fb0022a9..fe63bc2ca0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 0647712fe2..af91e1dc96 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 57bd2bd26c..db5fa3589d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 647e93d2e4..4b4f39b6cd 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 3426f4f8bc..20953902f2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 57b95524b3..1835355fd2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1a3eae377c..eb7bc66387 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ab8869227..4364c94d26 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:18+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fe5e4b47e7..1ff828475c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index d2d62ad1a0..7cfbc4b6ef 100644 --- a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 1f4b89c51e..ddb5c96856 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 45897f15ed..7cae1d8de5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ee1db1e66..896417db45 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c77112aeb..b4387b112f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:36+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 33881ca947..c8a8e9f283 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0890f25600..917c4c5861 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d16531e417..bf4ee2329b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e773cbd161..181a970d0d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ab9f40415f..cac0e9e22b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f29976a363..5a0521538d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fa5d871905..b340f79918 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c636749cb..be44b04dc7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:19+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a706796da0..3ae758353b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 eaa19cfa5c..90c231bf7d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index d08d22655a..d1846401d0 100644 --- a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" @@ -28,3 +29,4 @@ 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 3c2926a9d6..715d3d5a62 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..122135af71 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 54ee1ea877..31895a5163 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:37+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5a3edd446c..01a8c3a726 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 5bf7f1fb4d..aa57ba8b55 100644 --- a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index ab3b8a80bf..8bf6da99fc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 806e6cd81c..d5edb3142e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e7048e7656..3acf12b84e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fb621af7ec..89d923ce95 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 79bc09b09f..062a633b8a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e455559898..577a028a96 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:20+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8df7a1ca20..d58cdb9bf1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0763822e1b..7e5946f353 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a241f31814..7fb1f12fea 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 3ddcdfc2ac..f69f4fe52a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 0b303682c3..024b18d924 100644 --- a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 332a65e360..3d1d3926f8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 34a20d044f..0e0a9c2ed8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 567c003c48..e6748bd3e8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 71883adb36..7d308d8b36 100644 --- a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 189725af02..d2c3b70936 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c1328c8edd..8387394fb6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e8b7334c7a..ed0b7e3e8b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3763c51f72..7e52a70709 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:21+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 60698da475..c2f2cf2111 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3dfafe4740..31b00259e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c9f254b84..6fc15330a4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:39+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 011ab55c7b..298ea0769a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8ccbe41b35..4884b4f076 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eccef0b18f..e34164a36f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 315477a0f4..6de9b1dc2a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a85f37e1cc..ceb1aca3bb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9107334188..d718f6bdfe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 db3026b0a8..9de54b1fbc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..056ee0b62c --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" +"27)\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 a130ae7979..dedf501b0d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3c4b04181f..0ebcc5e3fd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 74dd7b0963..47abb3c37a 100644 --- a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 2700de3709..e0ee3d33d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 285aae35b0..d8e4ec457a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a470796ffe..919c82e93d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e10a3598e1..bdbe051b04 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a4e5e2cf37..91afb160c3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 439f91ce80..bc60e7a9ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4a030bc4b8..8b8068a4dc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0deec8fef1..993b2c44e4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:41+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 871951e7a8..caf7e6a181 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 95af920a56..fc692f6a55 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 797cf938a8..e1072c2ebf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3b6e3c53a5..1d8d3f37d8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 12347fe3e2..c440209953 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 afcd2947c6..884edb0579 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index ed0bc1edb6..e57e0d31f5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..c8add940d5 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" +"27)\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 c36892e9f7..4dde43d9d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:40+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a0ab4f32c7..31cf49424c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:22+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 99e0effa00..d0b41ffcf0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f2693dd719..0200b66d75 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f8cfa8b27..4d3063a1fa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 567d0cda5a..12d91d45e6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4b76c8edb3..68cbf9a705 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b68f6e1eca..1c818671f3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3648dcd7d2..7c7d76035b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 f5080a9476..93eadeebf4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 44f4abbeee..6f8d50fd61 100644 --- a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 0ac4e42b58..050a97ad78 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4a20b3375b..af7685897d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 132a1c5769..00cc4d1bc8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0e936957d9..ff9a1569ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index ee850e0d6a..a63719dce4 100644 --- a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 6404f8ad61..513e3a85b4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 12eed9e0a8..6b4726f39a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d3c4cb3433..c73300c98f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6e29944326..0ff0a211d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 089c943889..70f992f710 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4597b1a31d..e1ca660507 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 75cbe1f5f8..d44353c55e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:25+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a477d7e322..f08f7cd1d6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1c4fc2d5ff..b194e1169f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 040346747c..000f8043f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 84cb9d108e..4275008665 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8e5c86fddf..350e3e5d23 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8d05f5f9bc..cb1610e517 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 909f608978..bb07d5b839 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1e06d8fdb4..c3c13ae39c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 540818eff1..82bc06292c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f2bd1d4bdf..e70b61d699 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..f85f73b1ac --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" +"27)\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 52193bb033..8284b4bf91 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3ef69fe959..06adab352a 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index bd3bf558b3..755a011407 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7fce2485d4..a1ff9a1f5e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 82c15c1a69..76ffa5382d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2e06970a08..2684e03acf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eb15038e9f..7d02e9a4e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2235c41f68..3c05501cc4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index a5f57fa4d8..1e8f04a791 100644 --- a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/sv/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 6a5013495e..c22b8d56e8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 546008382c..29d26c051c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 88b6087366..7c1a682f6e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb4e2ec71f..1393a655c2 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 861ada4739..2ad52885aa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:45+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ba6cbdc9d3..7d19807c9e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0869478f27..563f2697e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:45+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 040b085295..14f872f90a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9ae0f1c94f..6a32479805 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..cd39fc0b6b --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" +"27)\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 f585d76ce4..83208e9e8b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e787608b1a..75820e24fd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fd6f099d7a..400e077209 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 619bec40a4..c7c4941b08 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e8ccdb3b5c..4cb795f1df 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7037fcf4d3..60d3b7d4ae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0c7951b16..307b3ece44 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 45aad74b4a..c6b1c03a6c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 de8725b431..ad05a32f01 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b2b56eda62..2a373f2d34 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:49+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index 231d57eac8..b6d9c8d2b7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index 60acd62b4a..5a7cd2d47e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..b84281c90f --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" +"27)\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 3c81562049..5d994acd3b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 feb2c822d8..08c6237bc6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 62822a7a70..683d95bb11 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d6a6e046e1..9c65c54a1c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d600dfd21c..83930ccd3c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f1a22ee864..7151c6102d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f403a23209..0a001af9b3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c2ff6488df..e1a4c29327 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 2bf785a5e4..a56dcb0963 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 67e5fe806d..71dbc4dd34 100644 --- a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index cd7f7302b0..553153cec3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..323c11b8f9 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:50+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 (r101121); Translate extension (2011-10-" +"27)\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 0f1e20725b..229e98f28f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a1c81d8431..89ab1e0a44 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b838edaa48..6753adea11 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 002796d6af..b3f23671f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bdbf642911..933a776f2b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 77aac93634..a7dabac22f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 abd9d6f231..2ce5f01a70 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2157ea016d..b4ff1bacec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f030041487..c1e4e392a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 237a119203..cacfab4d9f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 10e86865c2..11c00879ef 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1648907a98..ba194e13f1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8c3584f5f9..6eedbf0c15 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 6be11a56bb..d6d655afda 100644 --- a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 0cf0cb47ad..69d3331968 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 171cebb439..4f7f1f22ed 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 31892219e8..b98285be05 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 06a76e3285..0525dbd0ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ae37fa2b74..158323edd1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5da00ecdd1..401724772e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7e6a830547..f73240c2a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8dc80182b..95763ccfc9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ddca4ee47b..f86f3dc17e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b10b0f1482..213538c36f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 6d2f71332e..e666181b46 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ddeaf46539..e48d0c3463 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..cb0b085bf8 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5a225a037a..6cf25bcb6a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index af8b4e46a9..3b3cb02324 100644 --- a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 265c377d0c..1601ca7f75 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 061261f14a..f3f4112855 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 be5ea82b78..2c8777e031 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71667d2686..11a5a33eb1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:52+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 22da16ad62..c98dfa07d3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f3af427592..2281f37227 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 487db6ffff..abf066df16 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ae3bbaea32..67fbae5302 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f93837e7c5..ac78f9cd55 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 15a2b3f724..7345567986 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 545f9dcb95..0ed04ad30e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 269a64bcee..23fdc42ca6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fd4fcad767..3aa4ef3fa6 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 f15f68e9e9..73f4575a21 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4599e63f0d..1773174a7f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1d3a20f931..ee94ac350f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ed9b170b1b..c86dfa6e2b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1e70fc235a..f9ca5b3579 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 96e7f67da6..12e6232009 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c962c4f8fe..f296402135 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb7a8329fc..a034f92f27 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b1135ffdb1..c1ca7cf60a 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b5a570c35e..43e53d9d2e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 471b61849d..63ce1ab1f9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 60ab2c950c..01f3356e2e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0a8d0a439..45b9cc58ba 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5a2244d3c4..7e996c81c4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 64edd1f5f1..9ebfe5f5f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 76cefe3c0c..55df297e03 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 457c30c38c..e2d830a091 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b7676213f3..04b81b2f8f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c303ae2e19..08e4f1148f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 60abd1ce82..9aa362c33e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 87bb44c814..c691218028 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 48e3ba4fc1..0487e0d0c3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ea7ae1e8b3..b5e0ecae80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a98cb71ea6..5d31b5526e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:39+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eff560eb7f..57cf2a399e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 18b0a7d72b..acac6fc566 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a456127fad..427fb4cf92 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 008300fe11..809d4a1532 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 91272d2999..fa00deade3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c25672fcd..6cfeeed017 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ec850e778a..96dda36f62 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c80a95ac1a..ac007a852f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 646b716b32..c517c0e308 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 645723c49a..f1bc78936f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e0ce6ff9f5..606494c1b8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..912f3b380d --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" +"27)\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 d88b549d18..993e0fde5d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index fcfb2be679..b8e20259ca 100644 --- a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index c1ab54b217..b077a72f97 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f7637b8090..53af274195 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 836d052924..4d09d53a7d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cbf4de5498..dc2b85c5a5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f76e32e2ff..1de805cfc1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 90d29f6f7b..862cf55447 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bfbd5af484..450aea371f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c10bdd9204..07c1d25e99 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eaaf938592..ce885bc25a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3c6f29714f..69b618637a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b6a07617aa..78102ca119 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bb750b8738..c9336617b8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 0384e0ad81..54db02cc8c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 dd5b520761..c73c3a6cc7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f2360af027..4570827ac6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1db857ff09..fa8f0e5832 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4443fa7f97..814623c1a6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 33704e76d1..668061b5c9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 227502d470..8c8d583cf4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 98315bd6f4..9405126060 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 884a753c1a..81f463b2fa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 91d8aa6e4d..7cfc397c67 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 3f50a7ad25..6f008bbb8f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:59+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 64e01c4965..7bcf55c2b6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c861a796d8..2513462ad7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4f25b7833c..d2f689cc47 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 be578433fb..8351c53a2c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09:59+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8763bfe7ca..6d2e49b2ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 8482dac8e6..afb59380f3 100644 --- a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index dfb4e431aa..afd2427f5f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 52dfe01745..e272e547ed 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cfd34ee240..013e2f343b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a956391850..35e09402c7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ca53443cbb..40a4a22eec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2712dd3cbb..2fbf8ffedd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c5245d9e3b..59c6be8aeb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1702fd3924..092e37b43b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 621d34ff99..e5498bea04 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:09: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e661dd6aaa..ed0e94b161 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9c9b4f314a..5ff375eff6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:00+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5f199a7ebc..639b92a6a6 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 56c547043c..f6c66a5b36 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f4cc1100d4..b085cca328 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 edcdc07e2f..781b1c40f9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 066556d30b..411aa2628d 100644 --- a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 9c27ca1872..3d41d59c90 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5ba4df4d0f..83655bd088 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 972ec4b045..a340a722d2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2cba1f0f38..893d09540f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b42191d76a..c7382c883a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1763bafd13..06b75dc200 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4a7d928f49..2555a1e12f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c270fd745f..adfbc4de13 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 df58bc629f..91631cf317 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a20fe10a98..99038ac9e9 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 88c69e17ad..16ad8ce33f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9fa95baa54..f99c84712e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 2e6989b80b..205778fbdd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f35b5e95e1..5d812ea67a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5be76eface..ce4cac8720 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e6a07b87ea..7b8c4c32cc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 91c641a1c7..d624b9a008 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fe1c8a2d07..6f134fd8f9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:04+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 782eb21c0e..39f9ddf599 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 242143413a..063dcd6da4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:04+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5837dcbc32..2506670c83 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 21bbb46a03..68cfc904bc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bb18a96081..d40e3a87a2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5ea3c3baed..9e0740b827 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d1322b8c0d..3b9c66e924 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fe9e6027f8..669bdf0778 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7bf873f5bc..6810f91d37 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f226ea1e7..a0d6636293 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e183c72829..854635e80a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7e4ed876fc..28d43094e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8121ec72ef..25d183eb09 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 3f07515c88..14078f85d2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0724908bec..72b3bfceb5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb820bb646..775a38d973 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:05+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dc19bf0622..a6d6dcf01e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index d06b4b4536..b3a4125bc1 100644 --- a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 1e4575bde9..fdbc376108 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0681f468f6..63796f7138 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a3aaa22343..ebdb750509 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f209709e2..65fa26cf11 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8bd2faf514..df8fe87867 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b602ad1e1d..5ba74e6d3e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2a62a7d334..df555bb9db 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d09edd4b1d..f970dcc391 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 98ed9bf7a8..1482f40c5a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b4b574642e..f25c8858b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9b9472ee2a..b232d8eaa5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 68834ac3fd..3b7af97f7e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d595822123..946873dc40 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 72e66b2155..0fd1405ee4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 99ff0b187f..f70bf5eb44 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 119606b7d2..131d139e76 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 572ef95c39..7f93e05047 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 2728ac513e..500f9275db 100644 --- a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:07+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 32bd4947f4..881b8f88ca 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6d0d6d298b..201a53b362 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bc0e276515..524f1b5e54 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b2c4edd146..c6e869d544 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:08+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0b796793fc..6d976cf7f0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9b78ad5d12..82c947f53f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd26a9aa65..cb1f85a5b6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 80eceaa927..910c2f2d71 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b1fd9e787c..692f69fb83 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e1f0a481bc..70d69ad38a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e8f98b5326..e92ccaacf4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3de7178644..00ee356716 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8376a5227b..01881cff22 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 09ab269dbc..889f632820 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 0cfc3fbc07..5f3d0cb404 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e95fd63441..9ecd21bb82 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ff6685e60..7152470c98 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 836ba7dd8b..c7aef9b679 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e6d7ee368c..fd1b37b01b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4759ef1314..9a4b568a2e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0bbc7959c4..063a75d95a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 354a057207..6ff3a7190e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 122fa5097e..29d52c56f5 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 645ddc3838..d978654225 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6eecff8728..564e29473b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e614089e72..be1bd8f529 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d5d0977729..c24271b887 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 05f07bd7c4..83618ea9c7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ca93da611f..7c85a697e3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9bd26c9638..d15b1727d5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bbcee71be7..a7c11bc549 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4394001778..35cd4f0692 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3abc0e6629..52136d74af 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 16188c04f5..a3474cbad6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 3f7ec4ff75..03e4ae12a3 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 62d9f14c2a..f1e6ebcae1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index f3c8f77a4a..2199d3bcae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c3d912818c..fb8b82ec3e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..b3aa5d3fbb --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bd2cc8f6d4..187fabe4f9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 16bf090f29..8fbdb3666b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:12+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 edd766776b..71db4137b2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9a96ca386a..75ecbdc11b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c9d281f7f1..a747cb6bb0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 297e4806c5..5eaa064081 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fcd0ba45be..a4710c409e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bdab938b68..7c6e2d1f39 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 92525411bf..95e2745537 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 150c139e2e..72ed6d86d0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 054b84def5..db789d6d59 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9fef507cd6..7e0e9f06db 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 82fdccb417..ccc4eeee2d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1307b4b737..68f8f35659 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:13+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fdb5e5be62..bb647fe072 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 167646ba60..887059382b 100644 --- a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:13+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 7edca8eb05..4d79ed62a6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ea9e89c730..c76a1b00c9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cce703b3e5..f016bc2761 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d4386164f..1dcb24886b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9851381a45..547ace9c33 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:54+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 61600491df..87f799c101 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5f4a6efd71..d28f163673 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c1c50418e6..067d4c8518 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6c97085ebc..591d84ee95 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 index d60e1b946f..17222c9848 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index d692ef1aba..2a981ea357 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f2a6620ba4..32f9da59d1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8b4d969adf..fc08aea1a5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1880629969..789d145ae0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2483ecbad7..1d3664546d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e418f9b6a6..0040c25132 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb0a084476..43a7ada240 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 889b6ec628..28d7cb9e20 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 ffd99413f1..92e3baaa74 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f2e20e509..023328b1ab 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d95303a70..b8d1074de8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 5c9dc267ce..ef6623610d 100644 --- a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index 21a720e557..9db1d855e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a75f131c60..e697789636 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b7d2eb1f8a..00c1489bdd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b640bb9ac9..9f313b432d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aceae661b2..17f0c80306 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7d6a3ef24a..b28c677fb4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dac01ff7fa..1b778b95e2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 038cf8a4ab..07c090695f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 0bb51170d8..09480146e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:16+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 5c734a4213..c987d8c2ad 100644 --- a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 4a38842e23..994cb0f520 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..461a85397f --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 35b0746569..f404af57b8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1ac7c9adee..fe814cf391 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8d6ac2a5bc..967d011ad6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f5fb30e0fd..ad95e960e8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e1fc2d8811..350d0a0bf1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 31748930c7..307114dbea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 03e4e34889..27ee3f121e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 8505acab40..be076441f3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ef22db1c48..e962c29bec 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 41f4d4d70b..eeca8cd321 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..98d6bfaf13 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" +"27)\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 641795d4ef..aa6cfdbf6b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b9a33e2b3c..53f1339bb1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1e937aeae2..0a0dfb4624 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1bd6f056e4..62bcb47c05 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 da1419a1e1..01ad221b5a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1a20e1a657..b0ec6f3907 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:18+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7c524b3103..ad2cde5d12 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0723aee932..6fe07d30b6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1e908e9700..746b182fa2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 03ac1ac0bf..fd387700f8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5b3d5cdc53..b8ad6ee2e3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:39:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1950f2a959..25691da064 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 7c0404cf9c..e8820a4f40 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:19+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd32e97999..9694ff6de7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:19+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..5d892688d8 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:19+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 (r101121); Translate extension (2011-10-" +"27)\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 3d15919dc4..0cfc28aa9d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1456de5e0d..a8d03a062b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a8850a5d49..c6e4bc529f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c626a72668..e629be6ef1 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 index dd24c63f0b..4ae10f3cd0 100644 --- a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 3a8c0ce836..da5868ab31 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 461a0fe37b..6d46d33b8d 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 402e3942e1..0b00f95018 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71575ff58c..cd9fe2e32f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:45+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d21b7ec99e..3c3a91bc0e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dd75b75a08..e295e7d763 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f11da91d0f..6c36f8722e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 de94ad6fd2..e6c97c7e58 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot index 0112cfd30a..2285711a8e 100644 --- a/plugins/OfflineBackup/locale/OfflineBackup.pot +++ b/plugins/OfflineBackup/locale/OfflineBackup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 518f912f5b..2969a2773e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 a35cd37d7e..5974a668f1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:20+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e55257a450..747c9c82cb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:20+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 93db00fc98..db16984629 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 45785d9d5e..a02cd5bd6e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:20+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3a1bcb9f8f..9642089791 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 6a4cc5bb3b..04a23aaf53 100644 --- a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 0c37fb53bc..4fcaad8e22 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 008a8a28d4..dbfe7f2693 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 55926ee67b..d983598ceb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4b85ae41cd..8c6d2c27a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ab5e67981f..80a0a9b00d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5a519e58ca..c4de13175e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e2f1345edb..eff839158d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5b5231eaea..9d8dfbff65 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 accd331ee7..ebf5ac5398 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7b1597bb32..0e960df5c8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index f4ac247a0a..f0d379362b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 14c16ccd8c..2993aea079 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -616,10 +617,3 @@ msgstr "لُج تلقائيًا في المستقبل؛ هذا الخيار لي msgctxt "BUTTON" msgid "Login" msgstr "لُج" - -#~ msgid "" -#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -#~ "service." -#~ msgstr "" -#~ "* [الهوية المفتوحة](%%doc.openid%%) - تعرف على الهوية المفتوحة وكيفية " -#~ "استخدامها على هذه الخدمة." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 37ba85b852..a4d88b8226 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:09+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -639,9 +640,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Inicia una sessió" - -#~ msgid "" -#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -#~ "service." -#~ msgstr "" -#~ "* [OpenID](%%doc.openid%%) - Què és OpenID i com utilitzar aquest servei." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 12c290bcf9..2e49b5d881 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -16,13 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" 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..0347560e07 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 69af978575..f28f685da0 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index f2d8fb9902..e000b0c040 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -648,10 +649,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Aperir session" - -#~ 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." diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index 17e56c4a38..9739f2995e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:29+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 (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index f6e5ee1194..ac348135c0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -640,10 +641,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Најава" - -#~ msgid "" -#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -#~ "service." -#~ msgstr "" -#~ "* [OpenID](%%doc.openid%%) - Што е OpenID и како да го користите за оваа " -#~ "служба." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index c0a756b5d2..570fcceed7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:29+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 (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -649,10 +650,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Aanmelden" - -#~ 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." diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 355e85acec..6ec748edff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 9f41452ac0..e268fccb89 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -654,10 +655,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Lumagda" - -#~ 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." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 0c027a7e9e..038c9a84bf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -642,10 +643,3 @@ msgstr "" msgctxt "BUTTON" msgid "Login" msgstr "Увійти" - -#~ msgid "" -#~ "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -#~ "service." -#~ msgstr "" -#~ "* [OpenID](%%doc.openid%%) — Що таке OpenID і як ним користуватися на " -#~ "цьому сервісі." diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 6dc313dae9..418d647e4a 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 bf6fe37d0f..e35871fa63 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eb8e88845b..6ac29b7a54 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8f3da81576..c2d3b18fb0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 51300d7342..5f3022b465 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1ea1cb626f..16f07b5356 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6398a80dfc..8c5fafd445 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 92c67e607a..e625984861 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aba2132260..fb86e15136 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 57d8220a0e..cbb36b2968 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 6815f48b63..94560e2101 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c26dd017b6..8a42b36198 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 14539fd53e..0465be12f7 100644 --- a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index 1fcc2be1c0..19a5d63b47 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2533c0797a..27c6d04519 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2ae8be4b57..e39ce23c59 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cd43341ed9..855f10c4f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eb31051327..1621af35a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1475a3dcbf..cf34a8d891 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 5cc3fe4b66..ce69b8390d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f3d915fcd5..b0ea312b28 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8c979e71af..897af7fb60 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 36e66360a6..538d6c1915 100644 --- a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index c64695776b..c5659f85f1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2a2bdf4ba7..ef3cdc5b4a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 59adf1db07..48e1bae439 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3a36af854e..8536084147 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e1024d795f..06ea22576b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b07d0802d4..3863cabed4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f9447a23ad..e8bfba98d7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e11a3b5340..9e6e261f56 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:48+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8ee6516ded..70b76313ee 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0458fbf47c..b5f8f01dff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b28fc3dd7e..987815262a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 432e3e8442..5d2b650e37 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 4a960c22c3..d18a91bb40 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:50+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index eb552b5a2f..32c17ade1a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 01ff83a1a7..d491a74cad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..ebe261e3d7 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" +"27)\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 b87955a3cf..3c8a35ff37 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po index 2bb29b0986..1123313e69 100644 --- a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fur/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:50+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 182d780a34..6e049472fe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4520fa1a64..7ffd0833ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5adcdc64a0..6457ea409b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c764259b6..60746a0a8e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e3fe325b1d..8e9c00c23a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1c63e648b3..61b51ce730 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 761185bdc4..28258c96de 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 68168c9338..b441c24d61 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 91c7eddab5..97c13f93fe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9a8594979f..50e839d50b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5dcc04ebe2..10769c29d8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 8df5cd58f8..9c1047c18b 100644 --- a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index d4082dd7f1..43cd94c14d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d78d910156..54e1bc7e06 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b4394a9d2e..0b474aee18 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:51+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0ccef8dea..bc444608b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:51+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 13095f9114..82a052ac7c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3af160c10b..539b6f0c6e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d48f8685bd..86c1e21bcc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb5cb7a2db..a306bd0cc1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2b3d9c40bb..21192dea80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8617b471a8..fb65c810ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e09f447f98..23a6005dee 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8d4ffc7c30..27fd99009b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c09c629bb6..cb599fdd15 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1402979ca0..1228c4e4c5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 93410134dd..06343277bd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7281dd55d3..b22e9370b9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 deb78c2030..3abb02b3a3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..24f8c12702 --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" +"27)\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 97d1514f72..3e0d945783 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3977aa19a8..5d3d22d01b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7b1846c23b..6695b9d281 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d7111be14a..59f5deee3a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:34+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8b8158e103..ed8e8ebcf0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c6cf27c008..7d88b808d4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4ab8f51768..1bd49ce278 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b5b282e391..9f9b6fcb4c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8c0b673e8..1eb7e5a432 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:53+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2670229b16..2ace89f94d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4fcd3527d6..7221044f7a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c98c3b5a4c..fa5f96f871 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 36386d567f..3d8f62242d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 13cb0b948f..74f09c9f8d 100644 --- a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 8fe75255ba..410d39cc19 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a6a9b8170e..4355282fe9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:35+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b472025e06..a56688a6f7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eccb747522..2863b8d4ef 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e36b443138..cca4508e9d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 abe7a8fc85..18019abda5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b30abbb395..8c4c2436ed 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 823cd389d6..bb034daf20 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fc5cb8afbe..2e8de99856 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c74f0762fb..975393d8c9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f03b530b06..a57494b023 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2fce7c2d4e..26e4902154 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:54+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9ea2538fb4..c83fff1dfe 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 43fe1cd402..e64d847a68 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 61836a63cf..3b75d7c791 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:36+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9d5256949f..3aea5384d4 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 a4e049865b..cc41ad2cd7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:58+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index b424d584a9..abb895bfd3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a5870b257c..15501f8dd5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:40+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 9ef7652144..c034b8aa12 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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..d3a9bbf13a --- /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-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 496c95c58a..3c28a91f39 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6f060bd628..ed19a0bf46 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f845638582..63f9ec0a74 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10:59+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c054ee81ee..0b0b6766ff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 636be2dcfc..ec35f226f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 08fa44870d..0b66d3283c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aca94b6afe..da964a7e75 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1d78960c9c..81a6ac414d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:41+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:10: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b69c728d6b..24f487186c 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1908fdb0bb..1763d83ab7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e5efe47b79..53a70b322e 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 612355172a..6685da1a0c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3b2c02420f..e3cf800c1e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:50+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 94a91535af..a401d7659c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e5d4af5d64..2f48939bcf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 76eab8aee2..988460d1df 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:51+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 55892c8f1d..51f121f38b 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 819bd6fe85..f2f93587a5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:00+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 85351ba824..73b99b9a8d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5cd5ce0ae4..3d29436aff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:42+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 05438e40cf..985d4d020f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 82be6e4e92..5418de1dc3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bc283806ee..b030891433 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b279ce0043..851ac9dfb7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f8240b01fc..5812c2bd7a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6025fe0dd4..2ac3e9dca6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ac000fa7c0..5145490de4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e31e258e2f..e84b71bfad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 24787505c9..5a0370d659 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fecc2b098c..f5dd3e7565 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:01+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 916dcc2690..83ee9f2122 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eb428f0901..ca978ca337 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:02+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c59233b84f..73f2ea232b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:43+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 72725dc5b5..04b209f816 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 0b8d432851..9e4efdb182 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:02+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c723068a36..292b5d1148 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f55e5ef009..bafe94e290 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9525d7f42c..95d55daf92 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:02+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6ab22d2a95..ec2ec8f01c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a88550c976..5005c66562 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb9b84e800..d2fffb22f3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e5625d13ef..c62cbe295a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 db4ff040ad..76fb83cde7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:03+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3e187e3078..cc42045e2e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 56c1d7c1ca..bb8be01cd3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 78cdf3bbbd..e2df92af04 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 17d3908adb..ec7679d436 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:44+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 19e523e48e..78a15d2be0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2f51813877..b1d6bb41e8 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 index 7ab712fe30..37aa939f34 100644 --- a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 6c9cc42156..62e64d3683 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 727c0fb605..71fd06414c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6ee08507d8..2ee8340a0b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e8f7bf0e7f..6830ed9a70 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:45+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c93241574d..718f68d366 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d3938a977b..d3d0ab0b14 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bfc973bd30..14d92bdad0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:46+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e197df54b0..5ee29d984a 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 fc9b8ee967..24b3571598 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 01d43a0e31..75da087cfb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 30406733ce..e708c6a953 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 9aa5418acc..da78abec4c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a1a7f606b3..c95d0d6975 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:47+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c9e4803146..678296f2f5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 777870a40c..96404a9416 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7dabb1cd80..0fbd8ae04b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f049b01e92..5169263fff 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:06+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3db2623cf4..53db4b6c6c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bcf7e42bd9..2ba8acc0de 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 aaad08f1d2..f48c9e8014 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 35818f3fa9..bc7b11e105 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 96ff0b2fa9..3bf34c59e6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 546f04de31..8957ae70df 100644 --- a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 9efd5fdf08..37c1706b5b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:48+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4bb5860992..432226a182 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5eb2c7aadc..25ec12c263 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c7c5b1b533..c91d148425 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6a808ffccc..95c377a762 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1d19725742..09e9239a62 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dea59cfaf1..ba32d63395 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 140fd26987..dd4e2e93bb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bfc3425317..fa8ac05aa0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 75190e5e21..e0dd3d2991 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:49+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8a3076e14..82ed858a61 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 addb9b5680..8333ffb9e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fe6a150ce3..b591e635d5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index ede08dfe17..c6ef2efda7 100644 --- a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index 9da3c6a019..0637f9160f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a3329e02a2..00be03c1f9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 abe20df94d..5a731e61b2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 803833e0f6..c5b9e31c9c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7a9dc00429..7960ba7ede 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ae1045e7b..961c43a360 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6fc9092a1b..3a9cd170ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 52a1494ec9..1f54991265 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:05+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c7b5580a8..46f5005381 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 51c852ddc0..5aea3ff76a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d4ae02097e..b492df688e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 817ee27428..b712bef397 100644 --- a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index c40e47614a..9e8cd1ce81 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cfe0856990..043d91dd49 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d81094007b..c3dceb7727 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:23+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a0c90734f0..f2f1779e7d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b64cee109d..dfb154d759 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4eb49f1586..4346aee2dc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cf58467752..6bf9aab09e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:06+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a4ede906a5..88bd1259a7 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 d0151d7c8d..9d31537538 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:10+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8530ad48ef..494352cf04 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f84b754a59..6e80d0d16d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bddc2a1174..a7ec3262e3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e078491a9d..1aabe59c71 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c8ecf7bce8..ac9b800381 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5de79cb1c1..1686bdd0b4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 37c7b2411d..c81fc7cfab 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:10+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a2a5fe5a0c..4bb981ffb1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c1822b05b3..406bb3db88 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 878565b07f..3414c0f05b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:11+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 646ecd63a0..6a4425719f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:52+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0c1990e339..1b1813fa5a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 38b33ef752..2a395afe31 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 31d155bb6b..d674bebf40 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:53+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8c3062c349..0fb973d9b6 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 index 3a877b854b..95e1b284b9 100644 --- a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index c3aa8031ef..bb30a09c37 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 719ac8a9b1..a2e310ac77 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:55+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7816125afa..9a47b190e7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a942d8c14a..befc7a7485 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e1b21f9fa4..33b2bd34ed 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ae57881b40..c1c0d58a55 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 30bc82532b..ecc5d2e920 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:56+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 02ae6fedb4..cadb509abb 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 d04cc74818..c29243d7ba 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:15+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 203cba5c4d..03bc38a0a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:15+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5719891162..dfba67ab2c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 87b418f446..be79ccc7a1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e4c15ca1a9..bb7f6bf44d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7967e8fd94..8955ffed71 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 81d34ed6da..7c8a842c8e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0988d61247..0b6f516d56 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 936e0af68f..140f5ea15e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bd23e6699b..eabb936179 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:15+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 05fba55be6..665aa1ca29 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:15+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2f5a0a7f12..67dcac4d61 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:57+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4763cb9320..04d18c4c64 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 deb724685e..27a7db75b0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1822fb4ac8..883eed7a7f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 1b4833a6ec..1d47e7f1f6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 159d9ae662..1bac172912 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7a5949e9e5..5b15334216 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5b9b1ef9ca..1e3a50d17f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 77e2646be4..9473904167 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5721c91580..c29f8dd955 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:16+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bad0b7ef9e..dabdbdc015 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:58+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7647955a26..176065a447 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0cda14eb1..0ed672b688 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:16+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3262a4ed4c..904e997dcf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1179ee09a5..1cd8b44ac4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 06fd8386b6..199b937a8f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0959a24086..fd0bd6852c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4596649f12..8fb2bf673c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a068a3ac15..86fe059114 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d97754a37..70114d2257 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 447ff4ae51..e66011d92c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:40:59+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d00e80264d..9602ae398f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 67f626f77c..092eaffd30 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4a3e7f4346..3aefb72408 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:00+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3a0748d3a3..f965b5d485 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 391cd4106f..004789803f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9369456ea7..6e2f5d0073 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7973d9066b..1883be3a9b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f00b584825..3f00547814 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b6afb7dad8..784e87ce73 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2a9558a7c2..f8dd8bb343 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:01+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 31142dadb5..d4ae471ed8 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 df729e7079..fba86ed074 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b3a78548a6..4dbd4802ae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 38e9d07df5..1d573879b9 100644 --- a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 55f379440d..d1755e2a9e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ff3266c1ba..bfaa137f01 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1387d77cd0..519e676697 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 62d5e3f2ff..e45bce3c6f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d8bc5ab74e..ec22bd6614 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ca46990afe..496ecaef2e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b736663128..ee86a1295c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d901dcfd8a..af1e5dff95 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:02+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 005cb8dfae..20ecaa3979 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b987672b97..4e1e918f01 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0f75fbe6d8..082e3225c1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d6ecc0dbc9..a01db973ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 71fe62972b..19155d75b6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3b4e682f99..e2774bd268 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f3199a3b2e..cd4b3dcc80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ae75b9b09c..d2c4e87d17 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1548e17736..d9a7361402 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:03+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fbaf552e17..e5fa5da646 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 b9daf8136d..a7688345c9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bcd3b643e5..a198815cb1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 51465ee4cf..e3c10c8f49 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2425e26bba..fb5d4ebd51 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bf53b4b341..d84955df86 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 92184fde9d..f69c5ebc24 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e84222ee43..7d9fbf4839 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:04+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:21+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6d38692107..733a5f113f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 fa3b6938b3..e924ed21b2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a8f824cfb3..7b64ea0866 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index 2aa5049b98..e6ea0d7f22 100644 --- a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index fc4b958bd7..28f59d144d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0c24ba4e3d..ad70a12cba 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 59adb54afb..8a37c63550 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ea935dc0c7..015d2087d2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 872a578df1..4f1c52116a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 29474a2ad0..41579560bc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 69015c76ab..13a8492540 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:07+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 7e457b31b8..1c48562f82 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po index dc61bfb94b..3fcc4bf897 100644 --- a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ca/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:26+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index f764ccbd71..17e712a29d 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 4d1bf4ef08..44edba270d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c70482bc40..eb5f3f0afa 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 01a3d0374c..43f4dd2763 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 398cc4577f..da548f7c73 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b1450c1877..827e6943ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1b6d687a58..c3cc3dcc32 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:10+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 18ad262826..cf4ef598a5 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 7ce4caece8..cc4d385880 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index a0d44c36da..4f2a287e2c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 691235768a..c0cca32097 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d676182860..59b87adf74 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4f8f50b317..a857ff3503 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0cf2dd5a57..093dc6f864 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bf50db7068..48b59bd06c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:27+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 54e62c61de..937a211bd0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1f9ef1c358..38d17cf09d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ddda7da839..d7afa93e30 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:11+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a769649833..ec8adfecc4 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 982e8d0e8e..d145612b78 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9b91489e62..78be2908f5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f92066ec2b..d7873ddda4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d985e0bdad..9e174e72dc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 106c1c01f5..305c23beb8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c0f05b10cc..0ca60efc3b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 183ea3b5a0..a43b04d483 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 63b0987170..3da8551fb0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 05d51270de..c723ba9b2d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8b282bc90e..4256d2a1ae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ebcb16034b..8171b50c16 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 58f454a398..12169a8653 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:28+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 946c0e3946..54c0a707ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f5d9d2842c..494b7f241f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:12+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2733caadac..bc383e3b88 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:13+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e7c0f37bc7..077cdc9a05 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 dad6ed867c..4362e806ea 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a95a1db6ad..c625a7d632 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index a414e864a4..5444a964d6 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 54d71d3cde..5ff30b45b6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7131cc1c67..6def9d198c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d9083068bd..fef789359b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:14+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b2e9a21c1c..8422d75bf2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:31+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index 30d7c55fa2..af5817e39a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:31+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c6325ca365..ac9583adf7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1dd8cbba5c..be089d0426 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8842a166f7..3d88e5262e 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 eacb0d1b93..23ddf7b5fb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 07da786305..a3bf38b669 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 45d0784aad..b66835621e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5ac39acfc9..87234f94ef 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 80759e46b9..55341ecf4f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:15+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 930f459ca4..9d53ebb222 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 56fa08b6b6..f05496e3d9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 dab77de670..af6f1fb1cb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b9e08a7072..3ba0e4a3fb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7390cd4439..b94c6e22ad 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 f707634c81..47d6bca3a9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 35876ab816..6c68933b49 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4596198783..91c36623e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bf2acfdf95..6b18fda435 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5b9b706b43..620dd8abc0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 39a83ecd2c..03b3a6ac9f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6c75097a50..7838297f9e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:16+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4fd0ee73cd..92a307715f 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 af6d37903f..099e5ebd26 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e758d1ccea..7fb34c002f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e30de417e7..eadac2a395 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 eaf021fa6f..87a96a6831 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 23742e6800..5ae26a54af 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 index d895bd20f8..70088d2599 100644 --- a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/gl/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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 087669ed38..930f8d982b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 af88da00f1..1d08996f5c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 98ce3db347..078e0157c2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4ab0b50bc4..4863cd13f5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 289b0ee3db..038da9a19d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ac530c6e27..f267c665dd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bd791ba46c..b4f8e5bd0c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3ab936c7a4..7602b4f851 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c9f805ee12..228dde0b26 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 968c7132f2..8f65647746 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7827c840fa..a20620d71d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c54005d677..0b3bf50fcb 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:17+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 91ed5d5245..c682d219cc 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 f50db53b8a..bbd2fb1eb1 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:39+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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 957d10441e..9cc9f293e9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 141837efd5..ef0c578b9e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -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" @@ -205,7 +204,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 +230,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 +243,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 +278,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" @@ -402,7 +398,6 @@ msgstr "" #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "Twitter" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 6b93dd9e78..c5940b63cd 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index 7263d6abcb..ba4e70de46 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:39+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bb1b5989cc..892c15263e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:23+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 8c4191e454..af50223bc9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:39+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb677332a2..ac509a63e7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 7d5d1c1535..936ef66b76 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 70e137eaec..7ef76b6674 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index 5d28f274fe..d1a2ff7ee4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9cf3282afc..6124040870 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:40+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b93d3d2b00..21a8f45917 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 502614ba61..592ae4cee2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:24+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 80a4807abd..1d409f7598 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 125fe12766..e36511c2b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6089368b84..4bb32b6ee6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bfd45622e0..897c608a74 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0e03e58f48..df8ed56542 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 40fbf23707..cf917ecef3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 479332f0dd..a313642fa4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 738227f260..93a40e1b30 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4bf9b0078f..77ddf0bbc6 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 43a4600972..ae201df643 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0cac3940bf..40b73769ce 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 bcc187091f..c7844043d9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:26+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 943e7d70cc..a426814225 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 e179592996..22c107ae80 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 df1e2de88e..d8aaf4a069 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 cb5d44f4c5..e752ce3d3b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7341fe9176..806a481a92 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9f65047502..49aa33159f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0c3c8be177..a1de2ada3c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e9f49cee9a..4d7b7f17d3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8b5d38eeeb..28ac99b9a4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 61ccd566a7..b5de74aa9a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0517e208e3..668b9d586d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8385308e76..42c3ea6fd2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:27+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 64543bb1ea..e813f7e1a3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:43+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0dc695a359..39d83b0c5c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1b990fd887..259854a17c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 faf98ef34b..6ad99b5c0c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1ba8e40020..858c838c97 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 3ffd1882f2..e67ade6a08 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5b2269db95..54fc5999cc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:44+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 599c33cabc..0255a95d8c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2e84af5960..aa2ffeeecd 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:44+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2e042fb47f..90abf9754d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 9a2475b1a9..d4044ca536 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:28+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 51ebb87cbd..3cb0df56b0 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 053a15477c..dfb068acde 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 c3a0af64be..c2462799a7 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 398077f2f4..8664dc4714 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 576213f684..970c84892d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:45+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 549f5ff69f..ed05f39bf9 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4c42915c9e..5f67bcecf5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d9db55805c..61dd7f3e0b 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:29+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5d6a68f80f..214854b5bf 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 9817442acd..d68bbec2ca 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 548974819c..19ba7bed0a 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d686a0ee43..5d541a2e1d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7bf6761711..861d045ad4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a9b6437a08..734819b571 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 fbdbd1037d..f7cc8f0941 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2cddb528c3..edd92793cf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ded734f665..9fa7a14ea2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6bd905d104..d728ba8a6e 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2f301f34cb..b881e90176 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:30+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4676c662a6..2e2bb817bb 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 50d339f0a5..4fe84ef31d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:46+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ee139edfc6..d490794268 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b7f194acea..d3260d0a60 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 30a2d8a5d6..e8699052c1 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e2e17e2e59..a928320ccc 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1609aac07d..21b0f1cf2d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8bebb0faeb..13b381f52f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 4061058ed5..0f24cdca90 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 20de5fbdba..4f58b3d0c2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 693a57b477..9fd278ac52 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 0d2704ac62..a5157d9ae3 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 44329e6a04..d062da4d67 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7ff2892a7b..60b6e1ebf5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 ded783daaa..5e1c6ef3e4 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 a06cb7a64b..50ec069c3d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:31+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 31db1d0f2f..e137b3f2ae 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 8bb78b834c..c65688d0b5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2f30575085..8ce9245089 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 11315ed57f..e26490dfd5 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:47+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 70171e2879..2b9b9dc894 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:32+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7126ea2865..4ba45ac3fd 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 5e2da2fc48..4a280ef160 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 3a2de964e8..48d3b09adf 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 56d4849c54..9dac5c8873 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6a36d26265..7960ddedc2 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:33+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d02ff280ea..36e8d6cc24 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-10-10 13:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\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 50a24fdea2..b5686b062d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 5a98cddebb..b5860429e0 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 6d16d64ba3..ddd6e430d8 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 7d9e29242c..09f3b41c66 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 2ac717bfcb..bfc126946d 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 e649b7f425..d86a721f9f 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:37+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 d17025d4d0..a27e0be190 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 1e0b5af338..171614929c 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11:53+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 (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\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 b2bd616b50..50c6da0832 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-10-10 13:38+0000\n" -"PO-Revision-Date: 2011-10-10 13:41:38+0000\n" +"POT-Creation-Date: 2011-10-28 14:08+0000\n" +"PO-Revision-Date: 2011-10-28 14:11: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r99397); Translate extension (2011-10-07)\n" +"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" +"27)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From c2db2483a0e315f0050710bf6f224b2be3290039 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 29 Oct 2011 14:34:50 +0200 Subject: [PATCH 080/134] Remove trailing whitespace in UI text. --- actions/showstream.php | 2 +- actions/version.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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/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. From 0b69efe6f82b91f4da1a2c20b65c4184620bef0c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 7 Nov 2011 12:39:42 -0500 Subject: [PATCH 081/134] mismatched \n in ja translation file --- locale/ja/LC_MESSAGES/statusnet.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 5a9e9252a2..e8dc14dac6 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -7976,7 +7976,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. From 0fe3afc4956c81b95f9e9f2e81f4c56ffb38341e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 11 Nov 2011 12:22:33 -0500 Subject: [PATCH 082/134] smoothness is SSLed if using SSL --- lib/action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/action.php b/lib/action.php index d85ee25fb6..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]> Date: Fri, 11 Nov 2011 12:35:00 -0500 Subject: [PATCH 083/134] use HTTPS for JSON if necessary --- lib/action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/action.php b/lib/action.php index 7d4e03915c..4611210422 100644 --- a/lib/action.php +++ b/lib/action.php @@ -302,7 +302,7 @@ class Action extends HTMLOutputter // lawsuit $this->script('jquery.form.min.js'); $this->script('jquery-ui.min.js'); $this->script('jquery.cookie.min.js'); - $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.min.js').'"); }'); + $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.min.js', StatusNet::isHTTP()).'"); }'); $this->script('jquery.joverlay.min.js'); $this->script('jquery.infieldlabel.min.js'); } else { @@ -310,7 +310,7 @@ class Action extends HTMLOutputter // lawsuit $this->script('jquery.form.js'); $this->script('jquery-ui.min.js'); $this->script('jquery.cookie.js'); - $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.js').'"); }'); + $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.js', StatusNet::isHTTP()).'"); }'); $this->script('jquery.joverlay.js'); $this->script('jquery.infieldlabel.js'); } From cab76836cb97c3bc36f6efa74c045f0c2d12c49e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 11 Nov 2011 12:44:42 -0500 Subject: [PATCH 084/134] isHTTP() -> isHTTPS() --- lib/action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/action.php b/lib/action.php index 4611210422..0563fe2163 100644 --- a/lib/action.php +++ b/lib/action.php @@ -302,7 +302,7 @@ class Action extends HTMLOutputter // lawsuit $this->script('jquery.form.min.js'); $this->script('jquery-ui.min.js'); $this->script('jquery.cookie.min.js'); - $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.min.js', StatusNet::isHTTP()).'"); }'); + $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.min.js', StatusNet::isHTTPS()).'"); }'); $this->script('jquery.joverlay.min.js'); $this->script('jquery.infieldlabel.min.js'); } else { @@ -310,7 +310,7 @@ class Action extends HTMLOutputter // lawsuit $this->script('jquery.form.js'); $this->script('jquery-ui.min.js'); $this->script('jquery.cookie.js'); - $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.js', StatusNet::isHTTP()).'"); }'); + $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.js', StatusNet::isHTTPS()).'"); }'); $this->script('jquery.joverlay.js'); $this->script('jquery.infieldlabel.js'); } From b4ecb249070803b0600b2c1c100e80ca53e942ca Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 11 Nov 2011 17:14:38 +0100 Subject: [PATCH 085/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 17 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 109 +++++---- locale/bg/LC_MESSAGES/statusnet.po | 14 +- locale/br/LC_MESSAGES/statusnet.po | 14 +- locale/ca/LC_MESSAGES/statusnet.po | 18 +- locale/cs/LC_MESSAGES/statusnet.po | 18 +- locale/de/LC_MESSAGES/statusnet.po | 168 +++++--------- locale/en_GB/LC_MESSAGES/statusnet.po | 18 +- locale/eo/LC_MESSAGES/statusnet.po | 18 +- locale/es/LC_MESSAGES/statusnet.po | 18 +- locale/eu/LC_MESSAGES/statusnet.po | 18 +- locale/fa/LC_MESSAGES/statusnet.po | 18 +- locale/fi/LC_MESSAGES/statusnet.po | 17 +- locale/fr/LC_MESSAGES/statusnet.po | 18 +- locale/fur/LC_MESSAGES/statusnet.po | 17 +- locale/gl/LC_MESSAGES/statusnet.po | 18 +- locale/he/LC_MESSAGES/statusnet.po | 14 +- locale/hsb/LC_MESSAGES/statusnet.po | 14 +- locale/hu/LC_MESSAGES/statusnet.po | 16 +- locale/ia/LC_MESSAGES/statusnet.po | 18 +- locale/it/LC_MESSAGES/statusnet.po | 18 +- locale/ja/LC_MESSAGES/statusnet.po | 16 +- locale/ka/LC_MESSAGES/statusnet.po | 20 +- locale/ko/LC_MESSAGES/statusnet.po | 18 +- locale/mk/LC_MESSAGES/statusnet.po | 18 +- locale/ml/LC_MESSAGES/statusnet.po | 16 +- locale/nb/LC_MESSAGES/statusnet.po | 16 +- locale/nl/LC_MESSAGES/statusnet.po | 18 +- locale/pl/LC_MESSAGES/statusnet.po | 18 +- locale/pt/LC_MESSAGES/statusnet.po | 18 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 18 +- locale/ru/LC_MESSAGES/statusnet.po | 45 ++-- locale/statusnet.pot | 8 +- locale/sv/LC_MESSAGES/statusnet.po | 18 +- locale/te/LC_MESSAGES/statusnet.po | 22 +- locale/tl/LC_MESSAGES/statusnet.po | 18 +- locale/uk/LC_MESSAGES/statusnet.po | 18 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 18 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 8 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 11 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 8 +- .../locale/de/LC_MESSAGES/AccountManager.po | 8 +- .../locale/eu/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 8 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/he/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 8 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 8 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 8 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 8 +- plugins/Activity/locale/Activity.pot | 2 +- .../locale/ar/LC_MESSAGES/Activity.po | 8 +- .../locale/ca/LC_MESSAGES/Activity.po | 8 +- .../locale/de/LC_MESSAGES/Activity.po | 8 +- .../locale/eu/LC_MESSAGES/Activity.po | 8 +- .../locale/ia/LC_MESSAGES/Activity.po | 8 +- .../locale/mk/LC_MESSAGES/Activity.po | 8 +- .../locale/nl/LC_MESSAGES/Activity.po | 8 +- .../locale/ru/LC_MESSAGES/Activity.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/eu/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 16 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 13 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/eu/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 8 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 8 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 8 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 8 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 8 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/eu/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 8 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 8 +- .../locale/de/LC_MESSAGES/Blacklist.po | 8 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 12 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 8 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 8 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/eu/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 8 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 8 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 8 +- .../locale/de/LC_MESSAGES/Bookmark.po | 8 +- .../locale/eu/LC_MESSAGES/Bookmark.po | 8 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 8 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 8 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 8 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 8 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 8 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 8 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 8 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 8 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 8 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 8 +- .../locale/br/LC_MESSAGES/CacheLog.po | 8 +- .../locale/de/LC_MESSAGES/CacheLog.po | 8 +- .../locale/es/LC_MESSAGES/CacheLog.po | 8 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 8 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/he/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 8 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 8 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 8 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 8 +- .../br/LC_MESSAGES/CasAuthentication.po | 8 +- .../ca/LC_MESSAGES/CasAuthentication.po | 8 +- .../de/LC_MESSAGES/CasAuthentication.po | 8 +- .../es/LC_MESSAGES/CasAuthentication.po | 8 +- .../eu/LC_MESSAGES/CasAuthentication.po | 8 +- .../fr/LC_MESSAGES/CasAuthentication.po | 8 +- .../hu/LC_MESSAGES/CasAuthentication.po | 8 +- .../ia/LC_MESSAGES/CasAuthentication.po | 8 +- .../mk/LC_MESSAGES/CasAuthentication.po | 8 +- .../nl/LC_MESSAGES/CasAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 8 +- .../ru/LC_MESSAGES/CasAuthentication.po | 8 +- .../tl/LC_MESSAGES/CasAuthentication.po | 8 +- .../uk/LC_MESSAGES/CasAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 8 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 8 +- .../de/LC_MESSAGES/ClientSideShorten.po | 8 +- .../es/LC_MESSAGES/ClientSideShorten.po | 8 +- .../eu/LC_MESSAGES/ClientSideShorten.po | 8 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 8 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../he/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 8 +- .../id/LC_MESSAGES/ClientSideShorten.po | 8 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 8 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 8 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 8 +- .../locale/DirectionDetector.pot | 2 +- .../ast/LC_MESSAGES/DirectionDetector.po | 8 +- .../LC_MESSAGES/DirectionDetector.po | 8 +- .../br/LC_MESSAGES/DirectionDetector.po | 8 +- .../de/LC_MESSAGES/DirectionDetector.po | 8 +- .../es/LC_MESSAGES/DirectionDetector.po | 8 +- .../fi/LC_MESSAGES/DirectionDetector.po | 8 +- .../fr/LC_MESSAGES/DirectionDetector.po | 8 +- .../gl/LC_MESSAGES/DirectionDetector.po | 8 +- .../he/LC_MESSAGES/DirectionDetector.po | 8 +- .../ia/LC_MESSAGES/DirectionDetector.po | 8 +- .../id/LC_MESSAGES/DirectionDetector.po | 8 +- .../ja/LC_MESSAGES/DirectionDetector.po | 8 +- .../lb/LC_MESSAGES/DirectionDetector.po | 8 +- .../mk/LC_MESSAGES/DirectionDetector.po | 8 +- .../nb/LC_MESSAGES/DirectionDetector.po | 8 +- .../nl/LC_MESSAGES/DirectionDetector.po | 8 +- .../pt/LC_MESSAGES/DirectionDetector.po | 8 +- .../ru/LC_MESSAGES/DirectionDetector.po | 8 +- .../tl/LC_MESSAGES/DirectionDetector.po | 8 +- .../uk/LC_MESSAGES/DirectionDetector.po | 8 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 8 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 8 +- .../locale/ca/LC_MESSAGES/Directory.po | 8 +- .../locale/de/LC_MESSAGES/Directory.po | 11 +- .../locale/eu/LC_MESSAGES/Directory.po | 8 +- .../locale/fi/LC_MESSAGES/Directory.po | 8 +- .../locale/fr/LC_MESSAGES/Directory.po | 8 +- .../locale/gl/LC_MESSAGES/Directory.po | 8 +- .../locale/ia/LC_MESSAGES/Directory.po | 8 +- .../locale/ja/LC_MESSAGES/Directory.po | 8 +- .../locale/mk/LC_MESSAGES/Directory.po | 8 +- .../locale/nl/LC_MESSAGES/Directory.po | 8 +- .../locale/sv/LC_MESSAGES/Directory.po | 8 +- .../locale/tl/LC_MESSAGES/Directory.po | 8 +- .../locale/uk/LC_MESSAGES/Directory.po | 8 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 8 +- .../locale/br/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 8 +- .../locale/de/LC_MESSAGES/DiskCache.po | 8 +- .../locale/es/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 8 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/he/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 8 +- .../locale/id/LC_MESSAGES/DiskCache.po | 8 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 8 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 8 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 8 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 8 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 8 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 8 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 8 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 8 +- .../br/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 8 +- .../de/LC_MESSAGES/EmailAuthentication.po | 8 +- .../es/LC_MESSAGES/EmailAuthentication.po | 8 +- .../eu/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 8 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../he/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 8 +- .../id/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 8 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 8 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 8 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 8 +- .../br/LC_MESSAGES/EmailRegistration.po | 8 +- .../ca/LC_MESSAGES/EmailRegistration.po | 8 +- .../de/LC_MESSAGES/EmailRegistration.po | 8 +- .../eu/LC_MESSAGES/EmailRegistration.po | 8 +- .../fr/LC_MESSAGES/EmailRegistration.po | 8 +- .../hu/LC_MESSAGES/EmailRegistration.po | 8 +- .../ia/LC_MESSAGES/EmailRegistration.po | 8 +- .../mk/LC_MESSAGES/EmailRegistration.po | 8 +- .../nl/LC_MESSAGES/EmailRegistration.po | 8 +- .../sv/LC_MESSAGES/EmailRegistration.po | 8 +- .../tl/LC_MESSAGES/EmailRegistration.po | 8 +- .../uk/LC_MESSAGES/EmailRegistration.po | 8 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/eu/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/ia/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 8 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 8 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/eu/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 8 +- plugins/Event/locale/Event.pot | 2 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/eu/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 8 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/eu/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 8 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 8 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 8 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/eu/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 8 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 8 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/eu/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ca/LC_MESSAGES/Geonames.po | 8 +- .../locale/de/LC_MESSAGES/Geonames.po | 8 +- .../locale/eu/LC_MESSAGES/Geonames.po | 8 +- .../locale/fi/LC_MESSAGES/Geonames.po | 8 +- .../locale/fr/LC_MESSAGES/Geonames.po | 8 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/sv/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 8 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 8 +- .../locale/de/LC_MESSAGES/Gravatar.po | 8 +- .../locale/es/LC_MESSAGES/Gravatar.po | 8 +- .../locale/eu/LC_MESSAGES/Gravatar.po | 8 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 8 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/he/LC_MESSAGES/Gravatar.po | 8 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 8 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 8 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 8 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 8 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/eu/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../eu/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/eu/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 8 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 8 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 8 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/eu/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 8 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 8 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 8 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 8 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 8 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 8 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 8 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 8 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/eu/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 8 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 8 +- .../locale/ca/LC_MESSAGES/Linkback.po | 8 +- .../locale/de/LC_MESSAGES/Linkback.po | 8 +- .../locale/es/LC_MESSAGES/Linkback.po | 8 +- .../locale/fi/LC_MESSAGES/Linkback.po | 8 +- .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/gl/LC_MESSAGES/Linkback.po | 8 +- .../locale/he/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/id/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 8 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 8 +- .../locale/pt/LC_MESSAGES/Linkback.po | 8 +- .../locale/ru/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 8 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 8 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/he/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 8 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 8 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 8 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 8 +- .../locale/es/LC_MESSAGES/Memcache.po | 8 +- .../locale/fi/LC_MESSAGES/Memcache.po | 8 +- .../locale/fr/LC_MESSAGES/Memcache.po | 8 +- .../locale/gl/LC_MESSAGES/Memcache.po | 8 +- .../locale/he/LC_MESSAGES/Memcache.po | 8 +- .../locale/ia/LC_MESSAGES/Memcache.po | 8 +- .../locale/mk/LC_MESSAGES/Memcache.po | 8 +- .../locale/nb/LC_MESSAGES/Memcache.po | 8 +- .../locale/nl/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 8 +- .../locale/ru/LC_MESSAGES/Memcache.po | 8 +- .../locale/sv/LC_MESSAGES/Memcache.po | 8 +- .../locale/tl/LC_MESSAGES/Memcache.po | 8 +- .../locale/uk/LC_MESSAGES/Memcache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 8 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 8 +- .../locale/es/LC_MESSAGES/Memcached.po | 8 +- .../locale/fi/LC_MESSAGES/Memcached.po | 8 +- .../locale/fr/LC_MESSAGES/Memcached.po | 8 +- .../locale/gl/LC_MESSAGES/Memcached.po | 8 +- .../locale/he/LC_MESSAGES/Memcached.po | 8 +- .../locale/ia/LC_MESSAGES/Memcached.po | 8 +- .../locale/id/LC_MESSAGES/Memcached.po | 8 +- .../locale/ja/LC_MESSAGES/Memcached.po | 8 +- .../locale/mk/LC_MESSAGES/Memcached.po | 8 +- .../locale/nb/LC_MESSAGES/Memcached.po | 8 +- .../locale/nl/LC_MESSAGES/Memcached.po | 8 +- .../locale/pt/LC_MESSAGES/Memcached.po | 8 +- .../locale/ru/LC_MESSAGES/Memcached.po | 8 +- .../locale/sv/LC_MESSAGES/Memcached.po | 8 +- .../locale/tl/LC_MESSAGES/Memcached.po | 8 +- .../locale/uk/LC_MESSAGES/Memcached.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 8 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 8 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 8 +- .../locale/es/LC_MESSAGES/ModHelper.po | 8 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 8 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/he/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 8 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 8 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 8 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 8 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 8 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 8 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/eu/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 8 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/eu/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 8 +- plugins/OMB/locale/OMB.pot | 2 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 8 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 8 +- plugins/OMB/locale/de/LC_MESSAGES/OMB.po | 60 +++++ plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 8 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 8 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 8 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 8 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 219 ++++++++++-------- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 14 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../OfflineBackup/locale/OfflineBackup.pot | 2 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 51 ++-- .../OpenID/locale/eu/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 12 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 8 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 8 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 8 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 8 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/eu/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 8 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 8 +- .../locale/es/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 8 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/he/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 8 +- .../locale/id/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 8 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 8 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 8 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 8 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 8 +- .../locale/ar/LC_MESSAGES/Realtime.po | 8 +- .../locale/br/LC_MESSAGES/Realtime.po | 8 +- .../locale/ca/LC_MESSAGES/Realtime.po | 8 +- .../locale/de/LC_MESSAGES/Realtime.po | 8 +- .../locale/fr/LC_MESSAGES/Realtime.po | 8 +- .../locale/ia/LC_MESSAGES/Realtime.po | 8 +- .../locale/lv/LC_MESSAGES/Realtime.po | 8 +- .../locale/mk/LC_MESSAGES/Realtime.po | 8 +- .../locale/ne/LC_MESSAGES/Realtime.po | 8 +- .../locale/nl/LC_MESSAGES/Realtime.po | 8 +- .../locale/pl/LC_MESSAGES/Realtime.po | 8 +- .../locale/sv/LC_MESSAGES/Realtime.po | 8 +- .../locale/tl/LC_MESSAGES/Realtime.po | 8 +- .../locale/tr/LC_MESSAGES/Realtime.po | 8 +- .../locale/uk/LC_MESSAGES/Realtime.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 8 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 8 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 8 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 8 +- .../locale/he/LC_MESSAGES/SQLStats.po | 8 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 8 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 8 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 8 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 8 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 8 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 8 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 26 +-- .../locale/de/LC_MESSAGES/SearchSub.po | 8 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 8 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 8 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 8 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 8 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 8 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 8 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 8 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 8 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 8 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 8 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 8 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 8 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 10 +- .../locale/de/LC_MESSAGES/SubMirror.po | 16 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 8 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 8 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 8 +- .../locale/de/LC_MESSAGES/TabFocus.po | 8 +- .../locale/es/LC_MESSAGES/TabFocus.po | 8 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 8 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/he/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 8 +- .../locale/id/LC_MESSAGES/TabFocus.po | 8 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 8 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 8 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 21 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 8 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 8 +- .../locale/es/LC_MESSAGES/TightUrl.po | 8 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 8 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/he/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 8 +- .../locale/id/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 8 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 8 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 8 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 8 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 62 ++--- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 8 +- .../locale/de/LC_MESSAGES/UserFlag.po | 8 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 8 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 8 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 8 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 8 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 8 +- .../locale/de/LC_MESSAGES/UserLimit.po | 8 +- .../locale/es/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/he/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 8 +- .../locale/id/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 8 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 8 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 8 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 8 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 17 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 8 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 8 +- .../locale/de/LC_MESSAGES/YammerImport.po | 8 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 8 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 8 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 8 +- 1564 files changed, 6499 insertions(+), 6430 deletions(-) create mode 100644 plugins/OMB/locale/de/LC_MESSAGES/OMB.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 266857706f..10be63ba27 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5267,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) المبنية على البرنامج الحر [ستاتس نت]" @@ -6112,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 "" "ستاتس نت برمجية حرة، يمكنك إعادة توزيعها وتعديلها وفقا لشروط رخصة غنو أفيرو " "العمومية كما نشرتها مؤسسة البرمجيات الحرة، برخصتها الثالثة أو أي نسخة تليها " @@ -6127,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. diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index e3fb574ef0..aaf0be8f0a 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -3465,9 +3465,8 @@ 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." @@ -5357,11 +5356,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), які працуе на базе вольнага праграмнага " @@ -5474,37 +5473,41 @@ msgstr "Часавы пас па змоўчваньні для сайту; зв #. 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" @@ -5516,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. @@ -5665,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" @@ -6184,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. @@ -6192,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. diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 04f2e38ae1..a2445d5099 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5371,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. @@ -6248,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. @@ -6256,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. diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 1def9dd186..077abe8fa5 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:35+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5350,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/)." @@ -6228,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. @@ -6236,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. diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 528b6d8f80..ac13cb5d2d 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5352,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]" @@ -6209,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 " @@ -6221,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 " diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 3344bc8227..00e1b8ade3 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5500,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]" @@ -6392,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 " @@ -6404,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 " diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 8e2dfeda43..c17f48e4ef 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -31,13 +31,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5403,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 " @@ -5511,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" @@ -5529,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 "" @@ -5537,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" @@ -5573,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" @@ -6050,7 +6046,6 @@ msgstr "" "Leerzeichen getrennt" #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Tags" @@ -6287,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 " @@ -6299,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 " @@ -6754,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" @@ -6764,9 +6760,8 @@ 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. msgctxt "BUTTON" @@ -8036,12 +8031,12 @@ 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 "" +msgstr "Zurück zum Anfang" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8246,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. @@ -8269,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" @@ -8277,17 +8272,12 @@ 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. @@ -8303,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." @@ -8321,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" @@ -8333,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. @@ -8365,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" @@ -8383,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. @@ -8397,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" @@ -8421,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. @@ -8437,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" @@ -8458,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 @@ -8488,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" @@ -8508,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" @@ -8525,32 +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. -#, 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: 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, @@ -8582,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." @@ -8781,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" @@ -8855,9 +8823,8 @@ 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. msgid "Notice repeated." @@ -9157,14 +9124,12 @@ msgid "Login to the site." 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" @@ -9201,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" @@ -9217,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" @@ -9236,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" @@ -9308,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" @@ -9318,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" @@ -9332,25 +9292,21 @@ msgid "Find groups on this site" msgstr "Finde Gruppen auf dieser Seite" #. 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" @@ -9373,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" @@ -9383,7 +9338,6 @@ msgid "Upload an avatar" msgstr "Avatar hochladen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Passwort" @@ -9393,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" @@ -9442,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" @@ -9481,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." @@ -9569,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" @@ -9644,11 +9594,11 @@ 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" @@ -9767,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 1d9b60443d..a37b6dbb5a 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,14 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5449,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 " @@ -6316,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 " @@ -6328,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 " diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 9db1bd31bd..c69980f8a1 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,13 +17,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5404,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]" @@ -6291,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 " @@ -6303,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. " diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 89897c2650..a917d8f062 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -24,13 +24,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5454,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 " @@ -6352,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 " @@ -6364,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 " diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 8b776d8009..cf1997d45b 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5341,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/" @@ -6192,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 " diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 47af5f1a83..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-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:49+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,8 +29,8 @@ 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 (r101121); Translate extension (2011-10-" -"27)\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-10-10 14:22:23+0000\n" @@ -5470,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%" @@ -6363,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 "" "این برنامه به امید این‌که سودمند خواهد بود، توزیع شده است، اما بدون ضمانت؛ " "حتی بدون ضمانت جزئی دارای کیفیت فروش یا مناسب بودن برای هدفی خاص. برای " diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index f940c94b13..f027179678 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,13 +18,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -3949,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). @@ -5387,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)" @@ -6264,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. @@ -6272,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. diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 1db74322ec..917f530741 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -30,13 +30,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5448,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://" @@ -6337,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 " @@ -6349,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 " diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index d08edcc66b..1f1d0b8c00 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:55+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5220,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 " @@ -6060,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 " @@ -6076,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. diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index f2d1c780fa..1623b13afd 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5431,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) " @@ -6319,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 " @@ -6331,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 " diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 3d9ecc74c1..94d2cfe656 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5119,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. @@ -5940,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. @@ -5948,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. diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 6ca0fa90d2..ec7dde4af8 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5227,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. @@ -6082,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. @@ -6090,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. diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 404eb4bfdf..eadbf5a098 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5359,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://" @@ -6212,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. @@ -6220,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. diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index e5edf2bebe..788fc734b0 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5328,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 " @@ -6182,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 " @@ -6194,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 " diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 289d701780..e54a9af61f 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5455,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]" @@ -6349,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 " @@ -6361,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À " diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index e8dc14dac6..736f9402d2 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5275,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." @@ -6127,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. @@ -6135,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. diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 8c45337b12..6949ff4917 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5428,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 @@ -6322,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 ძირითადი საჯარო ლიცენზიის პირობების თანახმად, როგორც " @@ -6334,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 "" "ეს პროგრამა ვრცელდება იმ იმედით, რომ გამოსადეგი იქნება, მაგრამ არ იძლევა " "არანაირ გარანტიებს; არც თუნდაც პატარა გარანტიას მის გაყიდვადობაზე ან " diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 8949f01d3d..097a4971c4 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5264,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/) 소프트웨어를 사용하는 [마이크로 블로깅]" @@ -6109,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 "" "이 프로그램은 유용하게 사용될 수 있으리라는 희망에서 배포되고 있지만, 특정한 " "목적에 맞는 적합성 여부나 판매용으로 사용할 수 있으리라는 묵시적인 보증을 포" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 70179b3bc0..d5fab5bb69 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5346,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/Микроблогирање) заснована на слободната " @@ -6204,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 е слободен програм: можете да го редистрибуирате и/или менувате " "под условите на Општата јавна лиценца ГНУ Аферо според одредбите на " @@ -6216,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 "" "Овој програм е дистрибуиран со надеж дека ќе биде од корист, но БЕЗ БИЛО " "КАКВА ГАРАНЦИЈА; дури и без подразбирливата гаранција за ПАЗАРНА ПРОДАЖНОСТ " diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 43195e4107..73a8714ab7 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5245,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%" @@ -6098,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. @@ -6106,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. diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index fdfe4dad33..8861a67b73 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5405,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 " @@ -6294,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. @@ -6302,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. diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 14e0efcdf2..af8d988d6a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5384,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 " @@ -6244,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 " @@ -6256,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 " diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 42c196a73d..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-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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,8 +21,8 @@ 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5418,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]" @@ -6307,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, " @@ -6319,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 " diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 6216a865a6..cfba028579 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,13 +19,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5438,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 " @@ -6332,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 " @@ -6344,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 " diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index a880df4ec6..712e0ea175 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,14 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5391,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]" @@ -6257,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 " @@ -6269,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 " diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index c05a907408..af4cb9949a 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,13 +19,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -1996,25 +1996,23 @@ msgstr "Главная" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Документация" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Помощь" -#, fuzzy msgid "Getting started" -msgstr "Настройки сохранены." +msgstr "Начало работы" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "О сайте" -#, fuzzy msgid "About this site" -msgstr "Разблокировать пользователя." +msgstr "Об этом сайте" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2022,7 +2020,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Часто задаваемые вопросы" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2030,17 +2028,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Контактная информация" -#, fuzzy msgid "Contact info" msgstr "Контактная информация" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Теги" msgid "Using tags" -msgstr "" +msgstr "С помощью тегов" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2049,16 +2045,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Группы" -#, fuzzy msgid "Using groups" -msgstr "Группы" +msgstr "Используя группы" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -3489,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." @@ -5377,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/Микроблоггинг), созданного с " @@ -6234,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 " @@ -6246,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 "" "Данная программа распространяется в надежде, что она будет полезной, но БЕЗ " "ВСЯКОЙ ГАРАНТИИ; в том числе без вытекающей гарантии ТОВАРНОЙ ПРИГОДНОСТИ " @@ -8744,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." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 6e5bd4a3b8..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-10-28 14:08+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" @@ -6256,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. @@ -7252,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. @@ -7261,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. diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 9b9310bafd..1872cb71f9 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11: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: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5320,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 " @@ -6175,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 " @@ -6187,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 " diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index cedf48e024..28e9fcf124 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11: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: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -1973,7 +1973,7 @@ msgid "FAQ" msgstr "ప్రశ్నలు" msgid "Frequently asked questions" -msgstr "" +msgstr "తరచూ అడిగే ప్రశ్నలు" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -5314,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) సేవ." @@ -6170,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. @@ -6178,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. @@ -8712,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" @@ -9579,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 6bd87e581a..43ce3117e5 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5494,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 " @@ -6384,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 " @@ -6396,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 " diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index ca872bd380..5dae7eeb6d 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11: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: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5387,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/Мікроблогінг), який працює на вільному " @@ -6248,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, що " @@ -6260,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 "" "Ми розміщуємо дану програму в надії, що вона стане корисною, проте НЕ ДАЄМО " "ЖОДНИХ ГАРАНТІЙ; у тому числі неявних гарантій її КОМЕРЦІЙНОЇ ЦІННОСТІ або " diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 6d25a4b093..4fa086b596 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,14 +18,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11: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: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -5194,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/%" @@ -6026,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 了解更多信息。" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index f51e526e1b..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-10-28 14:08+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 8315114412..b4925aa70b 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83e0e84551..5b69b86a84 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a2e65e6491..586a491579 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b9b3851ef4..aa25aeb64a 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 efe73a3d92..9ecca1492c 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d70f164b98..89d2ba3b0d 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a70e0e455a..6102bea75d 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 004b2f0241..0c0ec93a8d 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f382525c6a..3c7c8a68ef 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6d33e7d250..d2e795d7a0 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dd7858e304..e16991e8c4 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 609e95ce1a..a8e9a8fe26 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f39e542de3..0eec7d8d18 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 23ec528011..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,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -28,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 cc1f0eb735..d218b8e937 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 277b5c8cc9..d683a6bb4b 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 71045ac2e0..e1b19de832 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cbe3f23f8f..d7534c5679 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0cc8f9ccd3..6e608e374c 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5284003384..ba134cf620 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 af20f8df90..d6169e0924 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7f637f9365..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-10-28 14:08+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 c778e9a090..0c8cee51ee 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f1044bac55..518bafd72a 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 232eeb5927..4ce6bb2066 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3ef5dce968..84e75c8f79 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 898358739d..781fdd635e 100644 --- a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index eb0da82035..5812b1da7c 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9c823a0de2..568c1d2ddf 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 3e388b1c82..96a174f66e 100644 --- a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 60439d301b..5c43ee8503 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b4952cc90..269f90cf4b 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7502ce1774..118ac8fbf1 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c7990be903..a1e3ddebe5 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fe8e21b5a3..53f31cf512 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fb1f50cd17..0e8230b7d4 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cca82313e6..e04cacecaa 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4b9149c132..5196a291b0 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 533c6a5265..38f53791da 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ca5af1ab2..b4949ad442 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7b20d7f212..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-10-28 14:08+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 index 791152422e..0988fc60fb 100644 --- a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index 8f94f4a4a4..725eafb4b2 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index 16c84aca3a..c0b3ca3b41 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po index ba7b3c3424..81635c4018 100644 --- a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index 92a00bc98f..b216127704 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index c15c0d1769..a95cf4feb4 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index 29d6cc0e59..ced9f7c4ba 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index cad2dcbe8b..1a6baa34a1 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:29+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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ffe73813f9..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-10-28 14:08+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 f75e5422b5..c77ee1ff31 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eef3bb130c..b033fbc565 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4b885966dc..167755372b 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bccb24de3a..8eaa2a690f 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8ef349ca27..4425ae9458 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 377603fbc6..4d61d32abf 100644 --- a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 1ee81d57fb..04966ac5e7 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3e5a290deb..ac7f2fa6a9 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 8e908765a1..194d4e2a97 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f533b6311a..ab1309f58f 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 94882398b4..48dba5742b 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7048750292..6c5cd23d2e 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ca5fc89ce6..0d6bc0a1d4 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 99d75b241f..881e600f40 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8fc50b7e98..8f96929bfd 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 456de99d0a..a5d2ee3b2f 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bca9b704fc..d1ca190f4d 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 14600c45f6..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,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -59,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" @@ -100,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 9e200847ea..b3c90d8f7e 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3c312077ad..eb4f84efc0 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2e6930bb1c..4b3a2e5f38 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3ce62ab784..ce0dbac70b 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 954933eae5..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-10-28 14:08+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 9ef22c5d65..8fa62734d7 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7747ddca0d..a402d158c1 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Dvdgmz +# Author: Gemmaa # Author: Toniher # -- # This file is distributed under the same license as the StatusNet package. @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -29,7 +30,7 @@ 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." @@ -43,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 d5b1661de8..eb47166496 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b2d1d5a31c..d1a2a2178c 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 679e2a2e51..d17104e88b 100644 --- a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index 03e57a8018..0525a3cf60 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bdb5c3cc6a..22e16a680c 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c90e66a837..cf1857787c 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0bafde3b1d..1ca5a80f22 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9b1f81d8de..922056a4cd 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 db07d01471..4f2bb07222 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8ff809d9d7..013d997b24 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cea97a76aa..033076c819 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e429f6e6fc..6268b2e41a 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 358512af0d..48de024cb3 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c28c66c78c..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-10-28 14:08+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 bb9bf24add..844ddbd602 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:35+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b09cf2c3f4..e63ebbc7ba 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:35+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d16297819c..f4b7513813 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c4ff125d87..d6ed019d5c 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index e6f1f0576c..b0aea4c454 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6cd2c82c35..d0a52df8f1 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b16641b439..27dcc42e64 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2d715758dd..b5cfcb5680 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 37cc3dd154..e91d97550c 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0853a0e8c8..4be0e6d38e 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 04f9a8893c..15f1512ccb 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 824a9bb0f6..c14075226c 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4f278ea1b3..1004d069c6 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6febbdbd58..6a833c04ae 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ed64c57b7..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-10-28 14:08+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 0d1ea8f43c..89e58bf23a 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9937422da1..54f0e0f1a6 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e318d904e9..4116b10752 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 3c4deb2d63..416323fc98 100644 --- a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index 562ced51de..cee98eb293 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2841181c4c..f75efe69cb 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 086635ac51..8d2fd899a1 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 41a8fe84d6..9896744de7 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c065fe1da0..f690570832 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7b8fa25b43..b579d30ca2 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 27aafefd32..37ec473850 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8fc96a9ed7..0597528d81 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8f1a8f0963..ad83fffd35 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 06cdcf5ec4..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-10-28 14:08+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 729519be39..ea0d5cf3ae 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28176db108..086d0ccb48 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4cf12be0e8..fa71c5cc4f 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 44b8fb6e13..36226a298e 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c86876e4db..b897ad55b5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2e5a0b07c0..07b9f1c65d 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b60118098c..bfefeab3a9 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6c1febe014..0d1e9aa848 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 474b7a3cf2..897acc6029 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 07e0880582..19a94340eb 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63278c023d..3d4b7a727a 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 906a613964..f83fa30253 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9e3d9de1d2..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-10-28 14:08+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 12e55671ce..36fecf52aa 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fea337ac76..de8f1b01d1 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 906757a749..8500b68d88 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ce7c6cd6af..da9ea98f10 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 614d76927e..f6e5934923 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 4f70f79741..a459618fe3 100644 --- a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 34e2a8c7f1..481cb54bcd 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index e485dec5c0..190e9469f8 100644 --- a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 68d80d58a4..45309d4ba4 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1dd39b88a6..7093177dad 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 64bec310a1..c85f048480 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 39fdd36a7f..1e3ee7bce2 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83ff618554..b8093fb929 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 46753787ed..487bebe465 100644 --- a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index e030a5cba6..01a9463c73 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5acd567578..2005a60353 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ee4c424faf..74fc682384 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 214b8b0f3c..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-10-28 14:08+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 08de6dc922..29b4adf059 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 18417676b1..ce7f77f345 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d6e16734b..88b50813b0 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 685a3a24a2..41a3bd3631 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index c2b112e884..cdb53d9f4e 100644 --- a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 37ffe226e8..77eddc0ef0 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4e758bb04e..67985511e7 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b7bf842070..c54f5476bc 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 be5237c4da..5173ccf333 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 10d4dd5d16..94b5687361 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3b3cabcc3e..53e99c23b1 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 375b127117..9372c6040f 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3063f31169..60750aa7e3 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b7250c412e..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-10-28 14:08+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 ab90074625..efee946835 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0fc13afcf1..b8b47b22dc 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c4a1cf7489..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,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -42,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 f255583922..d9977fd40e 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d997fd4d6c..871efc3b51 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1b4235577d..138570bf75 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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: Galician \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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 8533ce0061..2bc2b8772f 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 29f643921b..0ae73df628 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a0b5125b35..be591baebb 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b0cfa424ff..95e6e7d0cd 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5ef0f16b47..8375dc49cd 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fc164dc0ec..514f0d84ad 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a59a4d7827..b46c05a797 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 68a477ca01..db032e9597 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9b2c88a61b..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-10-28 14:08+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 5b66cec396..c0ab9fa0e1 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12693ace46..5d53a20f4b 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c4419574be..07dbd13c35 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1dd0e2d931..8c44a11375 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 161ce0dbb3..bda23ed5e6 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 17c748231c..b6b44f503e 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c6e62dde60..e1da2def9f 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f5be51207c..b8a36b4b2d 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -66,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" @@ -124,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 9d726d1a62..89071404ef 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cce53fac99..a9adedbf51 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6d2ee6a128..5b4ae520cb 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 704c6688d7..9527647e25 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 14b86df9e8..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-10-28 14:08+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 109ac00dcb..f3f887a081 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9c64a050f6..144c1b4990 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6373951b2d..d18a0ffe5c 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a80cb4a8bb..de8b0f6c38 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5b1899dc87..98bf528040 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 577b656060..9a86e899ee 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dfba8d5a63..b576e35787 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index c21fbda513..317eef5ee6 100644 --- a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 4c393ba6ea..573cf0a1ed 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5da6108a64..bf002b3e75 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0e05879ec1..ba34ceabf1 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8cfeffaeeb..38dfd53baf 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4bc8d57fe2..5ce95ab1a6 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 357a88a9dd..4d94215e03 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63fb0f3988..b48e924b5d 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0c995a5151..2fa28f68aa 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7758442662..1214fc075f 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d89325cce3..3254884917 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 23ef41d99f..1e68fe5a03 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 51ebf9e5a7..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-10-28 14:08+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 48461b110e..c2c6c2356b 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4dec7f3616..2b319d329d 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4292dfb11a..6ea399194d 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index bf95f69818..13033e3c08 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po index b2a30535ca..55ca537602 100644 --- a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po index 17d1404a0d..c52fece9d1 100644 --- a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po index 94255a5f8c..e8a9be43bf 100644 --- a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 2cb7e79052..5563ed68b9 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ee7036b67e..2d24141b50 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d3973c5fb0..a4b55b2208 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 45df1a4121..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-10-28 14:08+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 4f11ba07e0..d60b10f6a1 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3f2b903e2a..155accfbd5 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5eeea0ea44..dfea5d7cf4 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 aab928280d..b9aa68d221 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6787ae966e..33ca0ddab7 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9cc577492a..d3457a7399 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2a3b9d9b95..27239890f1 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d2088cac47..14e70ce6f9 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e977c43e9e..24437be049 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 913ffda3eb..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-10-28 14:08+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/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index ab03f3f8df..53d2cf256f 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index 2329a7208a..dfc9c6db61 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 662cb9d606..caa690bdd0 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po index 38adbf6233..98d6f1caae 100644 --- a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 21c8f2cfa8..8cd97f8b52 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 03e203f8b7..5afa3a8647 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 9b9d015cb6..a19b55fb77 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 802483c500..faec18161d 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:55+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index 6a28ac54c8..8eed6a5bde 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index e35e2599db..57a06e4e56 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index 0e59e7444a..05ee989a34 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index ac5c70a906..2cbbb7c45c 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 0c5f3e4277..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-10-28 14:08+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 f0bd25d685..f645105ade 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5355c2aeb8..3e069e2e00 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 480cda3f96..9faf38bb86 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d96408051..d60f034ff2 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f281ecd980..3881a020bc 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 97a69ed05a..61f488282b 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 006e9d19f6..70032c6815 100644 --- a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index f2430a01d3..daa34f4728 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9f5fe559e0..43af68eac8 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 59e1c9f307..4f0929c334 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 35b676f3dd..bc89b78dc8 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 66054063b3..07338e398d 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 868ee1ca21..5f71d06a1a 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b52efc2429..85517bee1a 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b8492f7c46..b63dfdd7ab 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 96be88fbdb..1c1581e28c 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0fb3e00167..280aad989a 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21b9a2d85e..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-10-28 14:08+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 a85962d647..30644541f8 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6e9e6b3a07..5fbc9e2502 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index cc2834526b..4fa5f8a51d 100644 --- a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index a4cf1cf55a..134019dadb 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 67635386c0..2a6a322517 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 447c8344ea..ac0f0ea3f0 100644 --- a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 1c2ed873b4..89b1739257 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4e6b74eb7f..24c1350d9d 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4e3306560c..04681614a6 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0f24c1523a..dc991cb700 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 44b42591f1..86544ee235 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 456a1aeea7..4ac8667cae 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 905f34a4a0..da81eff7aa 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7568c94f83..4f5be1af4c 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3e2768faf7..9819d6fd38 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4c91f6d376..98c2ceb4d1 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:08:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 69f94ebbea..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-10-28 14:08+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 20930adade..a855b241cd 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d893c1b6d..eacbf0460a 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2155c1d04a..f12479c4b6 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 8205435a01..a4d3e6dc6f 100644 --- a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 0c76c8f31f..cbb15345f5 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index ae2b073365..7c032518b1 100644 --- a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 00be681983..1d59c8ab31 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0cd1da9c1d..5275a793c7 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 97fa0ed1e1..f6c6b1463b 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9f37e136c1..cec0355366 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 85febd628b..24bd254eb2 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c99a067760..ef1369b121 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2044d8fb10..e5eceed15b 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 2803a1e17c..761dc43d46 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 966fc5578e..366e5e1199 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 558274a148..7bfa06e2d5 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1b520f228e..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-10-28 14:08+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 8b5a812270..113dd3354f 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2bbc1e772f..82d7798cf9 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index aa6cf40e76..177109cbf8 100644 --- a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index d67262a71f..eed431f8be 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e7a88c864f..eea4282344 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7b3fbe09d0..b70a93bd35 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d87666f4b3..4d5bb17586 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e379766748..a1ba682bba 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 93e9d69925..c71920c6eb 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a0d91355fa..f621d4cfe7 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 69c3554905..ab7c90f3b0 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d6f51c956a..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-10-28 14:08+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 0fb6f82450..555f010698 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1f08667794..9f8df76af8 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 df6df6227c..525b4f7976 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 281387477b..5fe4a4caa7 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 585573f988..609b9e61b0 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a662fa35a7..64a928735a 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 19740cf532..1c0d739611 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index e69299c922..07cd757115 100644 --- a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:02+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index bc95568127..81f217f4d3 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9a9f00abb0..7bf197edf9 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 144b400cda..31efcc9be1 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0bc77b266e..3d7b9271af 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9074e9b036..0bd8ba6b8b 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7cdef850ad..589a67d348 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e15846ab73..ec94264d1e 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 94a8f432e5..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-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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,8 +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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 65fb86c2bb..c76c8690a5 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 31c6a8c542..ddb5085f71 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7efe8d61af..c48800ecac 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5813c5eb28..92e6e8ea06 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e29f5e85f7..e0a5b7da54 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 022a58101f..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-10-28 14:08+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 d14aef9e1d..97d6d85b3e 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 95de2542a7..11ca39c7fe 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index 85a8df3b50..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,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -40,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 index 2d00d2c5ca..9984042ed5 100644 --- a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index fe6b627b11..4323566546 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0c33cf2eda..40dafc8d89 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 85f217b8d8..9894f5bbf1 100644 --- a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:05+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index 9e14050f49..ce6847b56c 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5463c7e6a9..430b87bd4b 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8298bc5a2b..1f02ede39f 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a630f56c61..ec899b1ec6 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dafeaa24b5..81ce2bbe12 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12ff7916da..a1eef29c83 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 772ad203fd..31ebadb13e 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 97b1af811c..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-10-28 14:08+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 ad2ab515c6..7004e5c4c4 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 25684ac199..bedb33d1e5 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 33d71ccc4e..aceeb72f42 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c709db52fa..f3a82c5045 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1c82f421a1..c741f04add 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f7e2376ca1..d065975036 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ca9ae640f6..797661a71a 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 9576eaba62..66b4196b54 100644 --- a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 363805fc53..5c7cfbc7d3 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c6e2c26acf..a21a6b053c 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 34a59af8ba..afd59aa9e2 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2816b96c94..e7452afd41 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4202433dd1..dc5b5f492f 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cbd0ea2a8c..4ad89df814 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d3cfe4f25f..6bab5cc25d 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b7ecff51ee..ab9ee8b348 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 14a22c891e..003344d3a3 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3eba83ae6d..5146671f71 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bce7ce7171..ffbba59a28 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4a338dd923..4b45b23570 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9749fc5a35..96c4b450e5 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63bd2c953d..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-10-28 14:08+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 1e8725951c..8fd1c36326 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12a2b5f3f7..11845456a5 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 406fd6798a..3bb150b7b7 100644 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 20ca9b6784..ead7e7d9ba 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 39d7655908..c018bb7396 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28dc99f767..a710bdc03f 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b7337e4c7e..31899d7390 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 97ddef2795..d911c37940 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d2e53cb4bd..3c42a0b889 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5712be824a..e998a6ea45 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a234a925ae..a693ad7ddf 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b37677985e..22a1a929de 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 35c2c9856d..d8ae6c7c59 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e67a5837db..0a18c80f91 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a561167538..6f068fb92b 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index 85619bbef4..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-10-28 14:08+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 0d364e74fe..9e108d2a99 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5485bfbd9d..269ce44ecd 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 14702213a2..013b16867c 100644 --- a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index ac15268ac4..5223df7d4a 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5b2bc23610..ee0a5f5d82 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 261b355dec..b53dca6435 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3acfc1e7b1..43b987423c 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c423862455..4b0fe11fad 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 140ace8867..8d13b54c9a 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e9e7c4f6ab..9c270fbf5f 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f79b72a76f..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-10-28 14:08+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 5834cdcece..83ba6cf75c 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 660bf8080a..747b3bb11e 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index d05e654957..4a9c1e2924 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d8a4e2a9a0..0f1fa4b687 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 45230da230..6e9fee6596 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b964f77fec..f44c1d81da 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f9a8129df2..84a24303f9 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 00d4a44e56..5cd58f2ca4 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2374296869..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-10-28 14:08+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 361076cb67..58e6f97d26 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ffd72b332c..b8a652e62b 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 324a466c59..bceed74555 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d64b80a5b2..b88908e4dc 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a63962c758..c7d2a22167 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fd4819967f..d75213753b 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 893a502d57..4993349c18 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 826c4bd1c8..f32e51aa3d 100644 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 20b1d91d20..652ffeede9 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 10ce9c5216..eb2492de6b 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21bd7621e7..5402678ea6 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d8eaf7420..4044e16ef9 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 db4ac82b5a..0386f74f64 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a4a866d702..e757f7b67b 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 acfd774043..3e05fe2bc6 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dd6fe9c5a5..8c1edeb3c6 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 865a4d1256..53b7119e36 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 31833f8551..948dbcd669 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 551f1ec188..634548d073 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a35ad0cb0e..bf3a40cff8 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 058bd55aab..8cdce5b0d3 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83132f1408..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-10-28 14:08+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 be31089a97..63f28b3591 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a969db4114..a1e852489c 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 37d265b5a2..0db8e9e1cc 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 811481308c..89309d745e 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 996a3692d6..b818fa1528 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 8c9885f2d4..aa0b0d6ce5 100644 --- a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 77edef81f7..8ff7a45452 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 261a76f843..90fe1604bb 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 14bbd22161..f74bde0ebe 100644 --- a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 74c426b4ce..15597521ba 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ff708ba4cb..ce26c31f74 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 87c9b1b4cf..47007851fb 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a60365c2df..6300fe21b9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 457df3b2ce..301468321b 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8f2bfc5518..95788c603a 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ba41e4ef39..f14f3c914f 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9fbe7c4466..19f6cbec4e 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bdeaf4ef22..39ce59a58a 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1a997b76d2..e1a7499cb0 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e340b6f41b..9a231fab29 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 aa7111d0fb..aea485ebb3 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 49b28d9e80..f40b3ddf3e 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1e8eafde02..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-10-28 14:08+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 7117cc9334..80eca3bbaa 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index 97669a7289..8bb03083f0 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4a6a6ae75d..befb2d7743 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index 68ef78922e..24539d501f 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index a3b4596519..c334c6fd70 100644 --- a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 7123bf058a..9daf40ddf1 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index 56f1a8da21..5a85c9f8e4 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 88c85fa502..11c8aac31b 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 827b77fbba..4bf8afd71b 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 646ecbe66f..c03ebf9b1a 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2bb2ca9241..98928636b8 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 454ad25b24..ec4af350fc 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1418d5282d..d269f96ba9 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 24e44874cb..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-10-28 14:08+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 e34c69b8f8..884771fe78 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1f2c9182c9..fb0f2bb6d3 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 87007615e7..e785248e28 100644 --- a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index 63fdfc1b4a..945257ef74 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21db653021..df7f53e9a5 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8152f5f282..64ef50e321 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bfceccd0dd..4ae16765cd 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d5c029ef3c..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-10-28 14:08+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 c5dfe9fc95..7d016dcb57 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index da94021121..14d527b759 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index aee0ab77f9..90c9ae33a7 100644 --- a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index ab49b2bd0a..b63282fe34 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a992e34288..f6770bb33b 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 86dfea1a3d..8a342b0c8b 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 196a32046c..6bdff87a19 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f6d8fab022..9bf72e8e1d 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/Event.pot b/plugins/Event/locale/Event.pot index c2336aeb94..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-10-28 14:08+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/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 5fc0322a93..579ac41e38 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:24+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 58b8cb706a..235936dd8c 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index 7b3e4e0af8..f2bdcb17f7 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index edd6518f63..2c2be04a39 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -78,7 +78,7 @@ 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". diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po index 53ee164486..5f42807abd 100644 --- a/plugins/Event/locale/eu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index 720cc38227..a673f38e51 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po index e97e8c9701..2984aaba9b 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 394ac5a453..8f94f00734 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 394912fef7..e41ab66cae 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:25+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index f8c6035f72..654ad09f64 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:26+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 9dd3e9ddbb..3bfc206e66 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:26+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 651184ce49..3fb4d01194 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:26+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 93f78ba376..7e02260555 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:26+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index eda0fdd0a2..769ed76199 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:26+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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 50097b2512..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-10-28 14:08+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 506366ee37..70071aba39 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ca80ec3506..02f5add769 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 31130e2314..99ff5d8b62 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index e875d78196..2822da1bc4 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index fb1c391a3b..5e365d2be4 100644 --- a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:29+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 1bd936aa0f..9fbee7f18b 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5a81c85156..290c103435 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bc242160f0..be8d2e71d0 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 88e6d7252d..267b7205c1 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1b5cd32beb..c9efdfd4d1 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4c6bbdb69f..aaa55e08c0 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4553909b69..efa859ae27 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 80b3552ed4..259bfc3321 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 027ea44080..7df4c6cef2 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cb515927be..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-10-28 14:08+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/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index dacfc8daac..753d5e880f 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:34+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 3c2bd4180c..6c1c87ebd6 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:34+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 01457c9d39..47fa3dc6cf 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:34+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 960edec414..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,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:34+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -162,7 +163,7 @@ msgid "You have disconnected from Facebook." msgstr "Du bist nun nicht mehr mit Facebook verbunden." msgid "Unable to authenticate you with Facebook." -msgstr "" +msgstr "Konnte dich nicht mit Facebook authentifizieren." #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index 4d911774b7..c658c333b5 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index 4afafa72d9..cec5dfc417 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index a1170c6437..0138206f95 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 03696139e6..4d946975da 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 83d9de4bfa..d0ade44de5 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 79e90b415a..44aa49a8f7 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index fe63bc2ca0..9eb99a02c1 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index af91e1dc96..ca69a57cfc 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:35+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index db5fa3589d..cdd8dd281b 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 4b4f39b6cd..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-10-28 14:08+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 20953902f2..34fea4c5a7 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1835355fd2..8a073849f5 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eb7bc66387..53141d5686 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4364c94d26..edaa9c716a 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1ff828475c..7bb8ae5531 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 7cfbc4b6ef..6673456074 100644 --- a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index ddb5c96856..d7ade9c5c8 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7cae1d8de5..ce904ad1f3 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 896417db45..d2e19d384d 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b4387b112f..d5ce29b2ff 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c8a8e9f283..e070d7a775 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 917c4c5861..2d03ac4848 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bf4ee2329b..9f91095b77 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:36+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 181a970d0d..9ed29f4b6f 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cac0e9e22b..fe3c86e5ea 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5a0521538d..865e52c821 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b340f79918..0f2543acc0 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 be44b04dc7..b9cfe6f194 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3ae758353b..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-10-28 14:08+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 90c231bf7d..723db99ea7 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index d1846401d0..ccd8dc99b2 100644 --- a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 715d3d5a62..3d01ac3dc8 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 122135af71..a79ac0487f 100644 --- a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 31895a5163..83625f91af 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 01a8c3a726..d50cf989b3 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:37+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index aa57ba8b55..58d7809882 100644 --- a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 8bf6da99fc..b644b313fc 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d5edb3142e..a61157d947 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3acf12b84e..923b7ab845 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 89d923ce95..3c0bccd069 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 062a633b8a..22189236b5 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 577a028a96..1f20260d5b 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d58cdb9bf1..f2c1e5382c 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7e5946f353..532f019c05 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7fb1f12fea..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-10-28 14:08+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 f69f4fe52a..cb9c274b84 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 024b18d924..7f7f81b644 100644 --- a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:38+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 3d1d3926f8..d0c13f3f42 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0e0a9c2ed8..50fe7fd641 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e6748bd3e8..fa4c294c94 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 7d308d8b36..92d2d89a54 100644 --- a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index d2c3b70936..9b9044bac5 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8387394fb6..7202b7f140 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ed0b7e3e8b..900983d6e3 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7e52a70709..b1420676c8 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c2f2cf2111..0850e4dd4b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 31b00259e9..62fdf709fd 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6fc15330a4..c4978554bd 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 298ea0769a..709bd34966 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4884b4f076..d63e9d1ee5 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:39+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e34164a36f..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-10-28 14:08+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 6de9b1dc2a..dbc4a57faa 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ceb1aca3bb..db54d2c0fa 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d718f6bdfe..2924bd6cda 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9de54b1fbc..01e62647ff 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 056ee0b62c..daa754d5d6 100644 --- a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index dedf501b0d..8b7a8848bb 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ebcc5e3fd..112a266dbe 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 47abb3c37a..23f3f9cbaa 100644 --- a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index e0ee3d33d6..3040aba7cd 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d8e4ec457a..7b67870c46 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 919c82e93d..c0bdf827af 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bdbe051b04..ca2f490b40 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 91afb160c3..3fab294717 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bc60e7a9ad..0bfcf09029 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8b8068a4dc..9c93853c8f 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 993b2c44e4..a816bdce6f 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:41+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 caf7e6a181..60707b7598 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fc692f6a55..a1cd9f8871 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e1072c2ebf..7cf4fc30c8 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d8d3f37d8..02809a92db 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c440209953..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-10-28 14:08+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 884edb0579..2912a9b089 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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: Catalan \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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index e57e0d31f5..75acab9f95 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index c8add940d5..f6d223d12e 100644 --- a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 4dde43d9d6..0b0321d888 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 31cf49424c..6c83048192 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d0b41ffcf0..dbf756c11a 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0200b66d75..c384114b50 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4d3063a1fa..e613ac3692 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12d91d45e6..f11bd7f4ad 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 68cbf9a705..8aa6965e97 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1c818671f3..e13ed04eb0 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:40+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7c7d76035b..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-10-28 14:08+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 93eadeebf4..e02f55ebe9 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 6f8d50fd61..83ceb041c1 100644 --- a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 050a97ad78..4f32b659c4 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 af7685897d..2cd41dab78 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 00cc4d1bc8..e2ddca0842 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ff9a1569ad..d4543f960d 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index a63719dce4..ec65370ad6 100644 --- a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 513e3a85b4..12bde24df2 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6b4726f39a..4533315330 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c73300c98f..d977a52665 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ff0a211d6..d78b0588f2 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 70f992f710..9675cf97a6 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e1ca660507..f7861f98b2 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d44353c55e..4a129fd8b6 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f08f7cd1d6..7326a9c974 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b194e1169f..6aa3993e20 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 000f8043f7..da7e8a2233 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4275008665..1bd9b55e7a 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 350e3e5d23..9158a316ae 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cb1610e517..29991ead6f 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bb07d5b839..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-10-28 14:08+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 c3c13ae39c..b8ad04bc6f 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 82bc06292c..ebdd6a051f 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e70b61d699..afcfec9bac 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index f85f73b1ac..343bcdb843 100644 --- a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 8284b4bf91..1033f1768f 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 06adab352a..af3a7bc2d6 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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: Galician \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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index 755a011407..f661c7958f 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a1ff9a1f5e..819808a44a 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 76ffa5382d..ca00d72bdb 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2684e03acf..363a20955a 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d02e9a4e0..04cc80b303 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3c05501cc4..ee821d8fd6 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 1e8f04a791..0d864b6414 100644 --- a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index c22b8d56e8..1ca5b442bb 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 29d26c051c..ae347eec22 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7c1a682f6e..f54ad1c881 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1393a655c2..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-10-28 14:08+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 2ad52885aa..3d0c8c58a2 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d19807c9e..dcd5d9b1be 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 563f2697e9..06720ad229 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 14f872f90a..bf7a589204 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6a32479805..def2a5fcfd 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index cd39fc0b6b..46612e4205 100644 --- a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 83208e9e8b..7386f4a41b 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 75820e24fd..8f719f69da 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 400e077209..4fb94228dd 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c7c4941b08..d5b5fff25a 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4cb795f1df..893d7e84cf 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 60d3b7d4ae..0ce1312275 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 307b3ece44..392fab5e1b 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c6b1c03a6c..315356656d 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ad05a32f01..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-10-28 14:08+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 2a373f2d34..5b7fb96cb8 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index b6d9c8d2b7..c1b28d9edc 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index 5a7cd2d47e..c54c471a1f 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index b84281c90f..242e825833 100644 --- a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 5d994acd3b..eeca4a40d6 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 08c6237bc6..cd630a7b57 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 683d95bb11..dc8f91c58b 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9c65c54a1c..38c1b58eee 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83930ccd3c..3d0a9af5ec 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7151c6102d..a808f9340e 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0a001af9b3..c5db23e091 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e1a4c29327..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-10-28 14:08+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 a56dcb0963..cb6c8ca46a 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 71dbc4dd34..8995b13690 100644 --- a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 553153cec3..e3d66ae781 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 323c11b8f9..49c3f131ce 100644 --- a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 229e98f28f..9ddac3625a 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 89ab1e0a44..defec312b7 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6753adea11..1a4d9dbc93 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b3f23671f6..f74b7b3113 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 933a776f2b..9fa0c77813 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a7dabac22f..c5133c2455 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ce5f01a70..91894b2fd1 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b4ff1bacec..c5cffbe039 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c1e4e392a1..f95a68b420 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cacfab4d9f..3dc2ddc918 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 11c00879ef..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-10-28 14:08+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 ba194e13f1..8faaec15cf 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6eedbf0c15..367a24447d 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index d6d655afda..b29f5ba533 100644 --- a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 69d3331968..2510e9d572 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4f7f1f22ed..a0ae1516d6 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b98285be05..e2264a90ee 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0525dbd0ea..5edfb141af 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 158323edd1..ca0f9ae7fa 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 401724772e..4332464eb0 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f73240c2a7..8a1ab1e30b 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 95763ccfc9..ac5f0be567 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f86f3dc17e..2a5020cf89 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 213538c36f..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-10-28 14:08+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 e666181b46..15f79655c9 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e48d0c3463..384eca4319 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index cb0b085bf8..5b7f7c019e 100644 --- a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index 6cf25bcb6a..5d8e8b1d9e 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 3b3cb02324..842381eae4 100644 --- a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 1601ca7f75..2b4ceb06e4 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f3f4112855..916c2a21ab 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2c8777e031..e2ef2f8b03 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 11a5a33eb1..601bc7401b 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c98dfa07d3..064a73d1ae 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2281f37227..a805fed203 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 abf066df16..9333190c7b 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 67fbae5302..1fbcebc859 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ac78f9cd55..fe812e9bde 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7345567986..56421ca5e3 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ed04ad30e..72d146ceb5 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 23fdc42ca6..55f75e87cc 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3aa4ef3fa6..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-10-28 14:08+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 73f4575a21..7d55eafcd7 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1773174a7f..0f0f8b9bd7 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ee94ac350f..12f0373579 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c86dfa6e2b..5a4a15102d 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f9ca5b3579..eaa7037980 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12e6232009..00f571b635 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f296402135..85ef8366d1 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a034f92f27..648ea9d6ff 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c1ca7cf60a..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-10-28 14:08+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 43e53d9d2e..0bd83290e4 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63ce1ab1f9..db1ec8cb26 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 01f3356e2e..c4abe5224c 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 45b9cc58ba..e5a694c8f1 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7e996c81c4..77afc71e32 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9ebfe5f5f7..a759558194 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 55df297e03..a8e6ef3cbd 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e2d830a091..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-10-28 14:08+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 04b81b2f8f..099c9a4cca 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 08e4f1148f..3a32816b74 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9aa362c33e..4cb85e5bc4 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c691218028..068add3ddd 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0487e0d0c3..5d9bc659f7 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b5e0ecae80..0183b17499 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5d31b5526e..82af14281a 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:56+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 57cf2a399e..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-10-28 14:08+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 acac6fc566..9eba540cfe 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 427fb4cf92..89a74956b3 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 809d4a1532..bab2db99eb 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fa00deade3..ea382afb8a 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6cfeeed017..8c303fee72 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 96dda36f62..8ea35de2bc 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ac007a852f..a9668ced5e 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c517c0e308..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-10-28 14:08+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 f1bc78936f..4247e447b3 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:57+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 606494c1b8..ab635067b6 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 912f3b380d..5ed9eb7bd2 100644 --- a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index 993e0fde5d..dcf901e353 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index b8e20259ca..5e2e91ab21 100644 --- a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index b077a72f97..627179a8e5 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 53af274195..5eec68a77a 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4d09d53a7d..6fd436eecd 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dc2b85c5a5..f7921e679e 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1de805cfc1..79bee23600 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 862cf55447..7fd296cf31 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 450aea371f..003b389c77 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 07c1d25e99..97d6923cae 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ce885bc25a..074c99aa53 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 69b618637a..d541ceadd6 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 78102ca119..f85c126fb3 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c9336617b8..114d642f6a 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 54db02cc8c..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-10-28 14:08+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 c73c3a6cc7..61875a081b 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4570827ac6..b1d8eeff78 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fa8f0e5832..b107649c2d 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 814623c1a6..15005d8a94 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 668061b5c9..4035346b45 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8c8d583cf4..808edfeed6 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9405126060..9cf3711a4d 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 81f463b2fa..e4e345e550 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 7cfc397c67..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-10-28 14:08+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 6f008bbb8f..29b9c2b559 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7bcf55c2b6..7dfd7d5d1d 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2513462ad7..66463a2620 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d2f689cc47..7e4a2d936c 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8351c53a2c..d32a234089 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6d2e49b2ad..ab2ebd61ba 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index afb59380f3..efd8144218 100644 --- a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index afd2427f5f..59b434b384 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e272e547ed..1ed8794694 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 013e2f343b..4b25a6f5dd 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 35e09402c7..0e89883980 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 40a4a22eec..695fb935d0 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2fbf8ffedd..7b8288a183 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 59c6be8aeb..16fa24f4a0 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 092e37b43b..d2fe7db657 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e5498bea04..53a59bd027 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:09:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ed0e94b161..068492c209 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5ff375eff6..c72b82388d 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 639b92a6a6..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-10-28 14:08+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 f6c66a5b36..4f9b24c581 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b085cca328..ed73a3cea6 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 781b1c40f9..0b5e571138 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 411aa2628d..83fe27bbcc 100644 --- a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:01+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 3d41d59c90..68521aceb1 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83655bd088..08d0de364f 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a340a722d2..0dba2f39dd 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 893d09540f..cdb8e0c0ea 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c7382c883a..5d26b71cd4 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 06b75dc200..c1ba02bd87 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2555a1e12f..96c92c6f88 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 adfbc4de13..f4a2e3650a 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 91631cf317..630cbe3dd2 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 99038ac9e9..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-10-28 14:08+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 16ad8ce33f..7af311eb7b 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f99c84712e..49763eb4b6 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 205778fbdd..c1b584319b 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5d812ea67a..fa150dfb28 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ce4cac8720..75d98ff9ec 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7b8c4c32cc..608ac84877 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d624b9a008..cfe5f6d08c 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6f134fd8f9..e9a15d776b 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 39f9ddf599..48e4baab47 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 063dcd6da4..62df5808dd 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2506670c83..f7889debcd 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 68cfc904bc..e3147ab2d8 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d40e3a87a2..fe12a24941 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9e0740b827..14da4b0cae 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3b9c66e924..cd4a09a06a 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 669bdf0778..89a017a449 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6810f91d37..7586a6e00d 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a0d6636293..e989768ab2 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 854635e80a..174d232f56 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28d43094e0..6892d3ef6b 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 25d183eb09..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-10-28 14:08+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 14078f85d2..176092f551 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 72b3bfceb5..77f57c4478 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 775a38d973..d9009dadbc 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a6d6dcf01e..108b3f39e9 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index b3a4125bc1..990720e58f 100644 --- a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index fdbc376108..57b7c1a51e 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63796f7138..1cd39c8215 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ebdb750509..1248a6546a 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 65fa26cf11..318f2c3159 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 df8fe87867..8f8e3b7852 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5ba74e6d3e..5e3e851ee9 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 df555bb9db..69f0d59f66 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f970dcc391..ad308e0802 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1482f40c5a..7d6766280c 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f25c8858b5..834b32d910 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b232d8eaa5..e44188a693 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3b7af97f7e..0cb3f75ad7 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 946873dc40..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-10-28 14:08+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 0fd1405ee4..3ac84e76cf 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f70bf5eb44..0ffed98e48 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 131d139e76..03e6f3e653 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7f93e05047..c48a1cfa8b 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 500f9275db..4b8e8b0d7e 100644 --- a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 881b8f88ca..ed44307515 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 201a53b362..85f767e8b1 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 524f1b5e54..da82d79946 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c6e869d544..e3e385226a 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6d976cf7f0..07c3a00bd3 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 82c947f53f..eae309593b 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cb1f85a5b6..090988712b 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 910c2f2d71..41d62c66ab 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 692f69fb83..ae5a79fb08 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 70d69ad38a..d17dc3a72e 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e92ccaacf4..407459c77e 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 00ee356716..2836ddd64d 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 01881cff22..bbbec1225a 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 889f632820..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-10-28 14:08+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 5f3d0cb404..2608a7b017 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9ecd21bb82..f723f42eac 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7152470c98..ac02ac8930 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c7aef9b679..f0d6622059 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fd1b37b01b..18b322b978 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9a4b568a2e..55a1365fcd 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 063a75d95a..4a3a3df76c 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6ff3a7190e..76d11f19fb 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 29d52c56f5..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-10-28 14:08+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 d978654225..b00a368634 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 564e29473b..c9acd3eca9 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 be1bd8f529..958742321b 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c24271b887..2af9a355df 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83618ea9c7..db8f9135fb 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7c85a697e3..2c1b05efe1 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d15b1727d5..3719154395 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a7c11bc549..2d14a25fd3 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 35cd4f0692..277e64ac42 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 52136d74af..61d7765e1f 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a3474cbad6..d2e46a52a2 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 03e4ae12a3..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-10-28 14:08+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/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index f1e6ebcae1..992c06ce7e 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 2199d3bcae..ce39043d20 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fb8b82ec3e..9aacee9698 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index b3aa5d3fbb..48d2b2549d 100644 --- a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 187fabe4f9..f858dc8b80 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8fbdb3666b..6f7d15d353 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 71db4137b2..bed5a51ab0 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 75ecbdc11b..8bd6586aa3 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a747cb6bb0..41a426d057 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5eaa064081..44f3089f3b 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a4710c409e..f4c9b86c9f 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7c6e2d1f39..195a5e6c50 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 95e2745537..29436b3cbf 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 72ed6d86d0..cc07df5151 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 db789d6d59..3551b8f8be 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:12+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7e0e9f06db..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-10-28 14:08+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 ccc4eeee2d..2727497b8c 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 68f8f35659..5fea735183 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bb647fe072..7f24006aae 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 887059382b..e0bbe1361b 100644 --- a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 4d79ed62a6..f474ffad72 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c76a1b00c9..165211b8ce 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f016bc2761..abbf46a419 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1dcb24886b..ddddaee956 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 547ace9c33..0d6515f64f 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 87f799c101..ff1a809523 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d28f163673..304c44d324 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:13+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 067d4c8518..39ea8f3799 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 591d84ee95..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-10-28 14:08+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 index 17222c9848..1eaa53bbca 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 2a981ea357..626ed27a89 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 32f9da59d1..16d98a3d1c 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fc08aea1a5..e217f91c5e 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 789d145ae0..e4043bc3cd 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d3664546d..ab645e62a2 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0040c25132..8eea76ede4 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 43a7ada240..b318a4b544 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28d7cb9e20..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-10-28 14:08+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 92e3baaa74..086ae675cc 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 023328b1ab..b67b1ac877 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b8d1074de8..3845ceb925 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index ef6623610d..19f97a37da 100644 --- a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index 9db1d855e9..b410cb64dd 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e697789636..9d03372bfe 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 00c1489bdd..0fb9289584 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9f313b432d..f107e52923 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 17f0c80306..300f06464b 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b28c677fb4..76c1f292a2 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1b778b95e2..7d5a87ab71 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 07c090695f..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-10-28 14:08+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 09480146e0..ba24b062f3 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index c987d8c2ad..8be814e0d8 100644 --- a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 994cb0f520..5a78b9cc48 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 461a85397f..a277846c8b 100644 --- a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index f404af57b8..de3404c701 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fe814cf391..d754c607ae 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 967d011ad6..d95ddb764f 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ad95e960e8..fe1464617c 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 350d0a0bf1..371f01a55c 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 307114dbea..44af9f9dde 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 27ee3f121e..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-10-28 14:08+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 be076441f3..2bc6f4a305 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e962c29bec..c9c703a0b4 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eeca8cd321..b9a1657643 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 98d6bfaf13..a94a40be62 100644 --- a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index aa6cfdbf6b..05554d133d 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 53f1339bb1..3fe82a1ae4 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0a0dfb4624..47cb849347 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 62bcb47c05..2d16012bef 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 01ad221b5a..365d84ed07 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b0ec6f3907..fbbc5019ad 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ad2cde5d12..33df80e24f 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6fe07d30b6..fc7d216d89 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 746b182fa2..6df0bd643f 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fd387700f8..41649117dd 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b8ad6ee2e3..9cb4987304 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 25691da064..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-10-28 14:08+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 e8820a4f40..24bc35aad3 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9694ff6de7..ffb01a2fab 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 5d892688d8..f759827b34 100644 --- a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:19+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index 0cfc28aa9d..48bef9b8ae 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a8d03a062b..c94391ee90 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c6e4bc529f..7e6dafda00 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e629be6ef1..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-10-28 14:08+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 index 4ae10f3cd0..f26aa18235 100644 --- a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -1,6 +1,7 @@ # 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. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:44+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -163,27 +164,29 @@ 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 "" +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 "" +msgstr "%1$stret %2$s de la llista %3$s ." #. TRANS: Title for unliking a remote notice. msgid "Unlike" -msgstr "" +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 "" +msgstr "%1$sja no li agrada %2$s ." #. TRANS: Link text for link to remote subscribe. msgid "Remote" @@ -197,26 +200,28 @@ msgstr "Actualització del perfil" #. TRANS: %s is user that updated their profile. #, php-format msgid "%s has updated their profile page." -msgstr "" +msgstr "%sha actualitzat la seva pàgina de perfil." #. TRANS: Link text for a user to list an OStatus user. msgid "List" -msgstr "" +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 "" +msgstr "Publicació fora no alimenta el suport." #. TRANS: Client exception. %s is a mode. #, php-format msgid "Unrecognized mode \"%s\"." -msgstr "" +msgstr "No es reconeix el mode \" %s \"." #. TRANS: Client exception. %s is a topic. #, php-format @@ -224,46 +229,48 @@ 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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 @@ -277,11 +284,11 @@ msgstr "Vés-hi" #. TRANS: Field label. msgid "User nickname" -msgstr "Sobrenom de l'usuari" +msgstr "Nom d'usuari" #. TRANS: Field title. msgid "Nickname of the user you want to list." -msgstr "" +msgstr "Nom d'usuari de l'usuari que vol a la llista." #. TRANS: Field label. msgid "Profile Account" @@ -289,17 +296,17 @@ msgstr "Compte del perfil" #. TRANS: Field title. msgid "Your account id (for example user@identi.ca)." -msgstr "" +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 "" +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 "" +msgstr "No s'ha pogut confirmar adreça remota perfil." #. TRANS: Title for an OStatus list. msgid "OStatus list" @@ -307,32 +314,32 @@ msgstr "Llista OStatus" #. TRANS: Server exception thrown when referring to a non-existing or empty feed. msgid "Empty or invalid feed id." -msgstr "" +msgstr "Id no vàlida" #. TRANS: Server exception. %s is a feed ID. #, php-format msgid "Unknown PuSH feed id %s" -msgstr "" +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 "" +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 "" +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 "" +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 "" +msgstr "Inesperat subscriure's sol. licitud de %s ." #. TRANS: Client error displayed when referring to a non-existing user. #. TRANS: Client error. @@ -391,6 +398,8 @@ 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" @@ -405,23 +414,25 @@ 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 "Uniu-vos al grup" +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 "" +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 "" +msgstr "Ja sou membre del grup." #. TRANS: OStatus remote group subscription dialog error. msgid "Already a member!" -msgstr "Ja en sou membre!" +msgstr "Ja ets un membre!" #. TRANS: OStatus remote group subscription dialog error. msgid "Remote group join failed!" @@ -436,29 +447,31 @@ 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 "" +msgstr "Sense ID." #. TRANS: Client exception thrown when an undefied activity is performed. #. TRANS: Client exception. msgid "Cannot handle that kind of post." -msgstr "" +msgstr "No pot manejar aquest tipus de missatge." #. TRANS: Client exception. msgid "In reply to unknown notice." -msgstr "" +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 "" +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 "" +msgstr "A l'atenció dels usuaris, no incloent-hi aquest." #. TRANS: Client exception. msgid "Not to anyone in reply to anything." @@ -478,7 +491,7 @@ msgstr "L'avís no està marcat com preferit!" #. TRANS: Client exception. msgid "Not a person object." -msgstr "" +msgstr "No és un objecte de persona." #. TRANS: Client exception. msgid "Unidentified profile being listed." @@ -490,15 +503,15 @@ msgstr "Aquest usuari no és el que està llistat." #. TRANS: Client exception. msgid "The listing could not be saved." -msgstr "" +msgstr "No s'ha pogut desar el llistat." #. TRANS: Client exception. msgid "Unidentified profile being unlisted." -msgstr "" +msgstr "Perfil no identificat al llistat." #. TRANS: Client exception. msgid "This user is not the one being unlisted." -msgstr "" +msgstr "Aquest usuari no està al llistat." #. TRANS: Client exception. msgid "The listing could not be deleted." @@ -506,11 +519,11 @@ msgstr "No es pot eliminar el llistat." #. TRANS: Client exception. msgid "Cannot favorite/unfavorite without an object." -msgstr "" +msgstr "No pot tindre favorits/no favorits sense un objecte." #. TRANS: Client exception. msgid "Cannot handle that kind of object for liking/faving." -msgstr "" +msgstr "No pot manejar aquest tipus d'objecte per a gust/faving." #. TRANS: Client exception. %s is an object ID. #, php-format @@ -528,21 +541,23 @@ msgstr "Subscriu a la llista" #. TRANS: Field title. msgid "Address of the OStatus list, like http://example.net/user/all/tag." -msgstr "" +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 "" +msgstr "Ja esteu subscrit a aquesta llista." #. TRANS: Page title for OStatus remote list subscription form msgid "Confirm subscription to remote list" -msgstr "" +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." @@ -550,11 +565,11 @@ msgstr "No existeix el grup." #. TRANS: Client error. msgid "Cannot accept remote posts for a remote group." -msgstr "" +msgstr "No es poden acceptar avisos remots d'un grup remot." #. TRANS: Client error. msgid "Cannot read profile to set up group membership." -msgstr "" +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. @@ -563,22 +578,22 @@ 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 "" +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 "" +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 "" +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 "" +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. @@ -587,11 +602,12 @@ 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 "" +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. @@ -607,12 +623,13 @@ 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 "" +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!" @@ -631,7 +648,7 @@ msgstr "Uneix al grup %s" #. TRANS: Button text to join a group. msgctxt "BUTTON" msgid "Join" -msgstr "Uneix" +msgstr "Inici de sessió" #. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format @@ -671,7 +688,7 @@ msgstr "Cal proporcionar un perfil remot." #. TRANS: Client error. msgid "No local user or group nickname provided." -msgstr "" +msgstr "Cap usuari local o grup sobrenom proporcionat." #. TRANS: Page title. msgid "OStatus Connect" @@ -685,12 +702,12 @@ 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 "" +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 "" +msgstr "No s'ha pogut aconseguir l'avatar de %s." #. TRANS: Exception. %s is a URL. #, php-format @@ -699,42 +716,48 @@ 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 "" +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 "" +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 "" +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 "" +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." @@ -746,7 +769,7 @@ 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 "" +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." @@ -756,7 +779,7 @@ msgstr "Només es poden gestionar les activitats compartides." #. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." -msgstr "" +msgstr "No s'ha pogut desar l'activitat %s." #. TRANS: Client exception. %s is a source URI. #, php-format @@ -780,7 +803,7 @@ msgstr "" #. TRANS: Server exception. msgid "No author ID URI found." -msgstr "" +msgstr "No s'ha trobat cap autor ID URI." #. TRANS: Exception. msgid "No profile URI." @@ -788,15 +811,15 @@ msgstr "No hi ha cap URI del perfil." #. TRANS: Exception. msgid "Local user cannot be referenced as remote." -msgstr "" +msgstr "L'usuari local no pot fer referència tan remota." #. TRANS: Exception. msgid "Local group cannot be referenced as remote." -msgstr "" +msgstr "L'usuari local no pot fer referència tan remota." #. TRANS: Exception. msgid "Local list cannot be referenced as remote." -msgstr "" +msgstr "L'usuari local no pot fer referència tan remota." #. TRANS: Server exception. msgid "Cannot save local profile." @@ -808,111 +831,111 @@ msgstr "No es pot desar la llista local." #. TRANS: Server exception. msgid "Cannot save OStatus profile." -msgstr "" +msgstr "No es pot desar el perfil local." #. TRANS: Exception. %s is a webfinger address. -#, php-format +#, fuzzy, php-format msgid "Could not save profile for \"%s\"." -msgstr "No es pot desar el perfil de \"%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 "" +msgstr "No es pot desar el perfil de \"%s\"." #. TRANS: Server exception. msgid "Could not store HTML content of long post as file." -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 "" +msgstr "No es pot localitzar la clau pública signant." #. TRANS: Exception. msgid "Salmon invalid actor for signing." -msgstr "" +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 "" +msgstr "Aquest mètode requereix POST." #. TRANS: Client error. Do not translate "application/magic-envelope+xml". msgid "Salmon requires \"application/magic-envelope+xml\"." -msgstr "" +msgstr "Salmó requereix \"aplicació/magic-sobres + xml\"." #. TRANS: Client error. msgid "Salmon signature verification failed." -msgstr "" +msgstr "Ha fallat la verificació de la signatura de salmó." #. TRANS: Client error. msgid "Salmon post must be an Atom entry." -msgstr "" +msgstr "L'enviament Atom ha de ser una entrada Atom." #. TRANS: Client exception. msgid "Unrecognized activity type." -msgstr "Tipus d'activitat no reconeguda." +msgstr "Tipus d'activitat no reconegut." #. TRANS: Client exception. msgid "This target does not understand posts." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand follows." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand unfollows." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand favorites." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand unfavorites." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand share events." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand joins." -msgstr "" +msgstr "Aquest objectiu no entén llocs." #. TRANS: Client exception. msgid "This target does not understand leave events." -msgstr "" +msgstr "Aquest objectiu no entén permís esdeveniments." #. TRANS: Client exception. msgid "This target does not understand list events." -msgstr "" +msgstr "Aquest objectiu no entén permís esdeveniments." #. TRANS: Client exception. msgid "This target does not understand unlist events." -msgstr "" +msgstr "Aquest objectiu no entén permís esdeveniments." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." -msgstr "" +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 da5868ab31..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,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -293,7 +294,6 @@ msgid "List %s" msgstr "" #. TRANS: Button text to list a remote object. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Ausführen" @@ -303,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 6d46d33b8d..fd17675e43 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 0b00f95018..73a9622514 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cd9fe2e32f..33d16a2c8a 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3c3a91bc0e..04c3ae7553 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e295e7d763..d8966224e2 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6c36f8722e..0d2df6245d 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e6c97c7e58..8702e092ff 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot index 2285711a8e..69612eda01 100644 --- a/plugins/OfflineBackup/locale/OfflineBackup.pot +++ b/plugins/OfflineBackup/locale/OfflineBackup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+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/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 2969a2773e..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-10-28 14:08+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 5974a668f1..8f78cae8d5 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 747c9c82cb..b061fcaa99 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 db16984629..090fc835e3 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a02cd5bd6e..2899325d6d 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9642089791..9253302d1e 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 04a23aaf53..82b4a1d1fc 100644 --- a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 4fcaad8e22..6915efa240 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dbfe7f2693..28844da788 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d983598ceb..a36ef9eaaf 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8c6d2c27a7..9f836f048b 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 80a0a9b00d..a107d20e06 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c4de13175e..803f08a351 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eff839158d..93ca12f30c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9d8dfbff65..3289e96c51 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ebf5ac5398..c058d514c5 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0e960df5c8..f8c5c01aa6 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index f0d379362b..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-10-28 14:08+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/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 2993aea079..360f0734d3 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index a4d88b8226..6562025754 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 2e49b5d881..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,14 +17,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -41,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." @@ -107,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]. @@ -118,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]. @@ -126,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]. @@ -134,6 +138,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" +"(Besitzt du eine [OpenID](http://openid.net/)? Teste unsere [OpenID-" +"Anmeldung](%%action.openidlogin%%)!)" #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." @@ -185,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." @@ -196,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 " @@ -205,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" @@ -292,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. @@ -344,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 "" @@ -401,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" @@ -504,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" @@ -586,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." @@ -599,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 index 0347560e07..2be03ce345 100644 --- a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index f28f685da0..2625576790 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:28+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index e000b0c040..2eb70f85f2 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:29+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index 9739f2995e..b3a3518181 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:29+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index ac348135c0..57d1f1183b 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:29+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 570fcceed7..aa623bd737 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:29+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" @@ -19,8 +19,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -316,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 6ec748edff..1aa9963380 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:29+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index e268fccb89..2bf3ebe1c9 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:30+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 038c9a84bf..0c8ff29917 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:30+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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 418d647e4a..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-10-28 14:08+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 e35871fa63..d481c4e181 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6ac29b7a54..6a7237ea35 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c2d3b18fb0..46009b0ae0 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5f3022b465..c35ce3dc68 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 16f07b5356..023de82b67 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8c5fafd445..0244cfe2f3 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e625984861..69ae31a56a 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fb86e15136..e33645574a 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cbb36b2968..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-10-28 14:08+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 94560e2101..0366bd8244 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8a42b36198..cf647c86ab 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 0465be12f7..8e52290295 100644 --- a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index 19a5d63b47..858c469199 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 27c6d04519..f68b2cad5e 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e39ce23c59..2dad78eee1 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 855f10c4f6..cc650f11da 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1621af35a7..71e34344a9 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cf34a8d891..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-10-28 14:08+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 ce69b8390d..9a02dda9bd 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b0ea312b28..c71aa42c9a 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 897af7fb60..c88ec19413 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 538d6c1915..fabf789343 100644 --- a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index c5659f85f1..ff875366d4 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ef3cdc5b4a..b49fb13d63 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 48e1bae439..5025a76e11 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8536084147..415e998285 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 06ea22576b..62b9910c83 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3863cabed4..06d2c903bb 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e8bfba98d7..e5a4717540 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9e6e261f56..bfc31fb8db 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 70b76313ee..2402f5229b 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b5f8f01dff..e66dbe9b46 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 987815262a..e9504cf1ad 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:48+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5d2b650e37..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-10-28 14:08+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 d18a91bb40..74a5b473b0 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index 32c17ade1a..639e36c2bd 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d491a74cad..6edaf5ed10 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index ebe261e3d7..e15afc60b6 100644 --- a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index 3c8a35ff37..563e6b590c 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po index 1123313e69..4df54d6494 100644 --- a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 6e049472fe..4d479af4fe 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7ffd0833ad..c701545583 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6457ea409b..5903194bbf 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 60746a0a8e..7900efdf0e 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8e9c00c23a..3baa849a64 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:50+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 61b51ce730..53a52c82c2 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28258c96de..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-10-28 14:08+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 b441c24d61..91e057b618 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 97c13f93fe..d351610be4 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 50e839d50b..6dbb1d448b 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 10769c29d8..20e02e0dd1 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 9c1047c18b..21d6387e21 100644 --- a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 43cd94c14d..ab3ed58d96 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 54e1bc7e06..739f4944f3 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b474aee18..12a26e501c 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bc444608b5..76c92679a1 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 82a052ac7c..1fb84d6afb 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:51+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 539b6f0c6e..680e02f106 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 86c1e21bcc..7b35c489bf 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a306bd0cc1..723421d8f8 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21192dea80..c91f3c74ad 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fb65c810ea..9f1b19771d 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 23a6005dee..99be772c61 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 27fd99009b..2025ee4077 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cb599fdd15..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-10-28 14:08+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 1228c4e4c5..00a8fbc669 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 06343277bd..02c3873047 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b22e9370b9..cf42da9fa7 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3abb02b3a3..931a66a654 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:52+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 24f8c12702..337e779729 100644 --- a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 3e0d945783..644e703aa2 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5d3d22d01b..397dc6dbde 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6695b9d281..dd20e94a1f 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 59f5deee3a..fb85299df0 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ed8e8ebcf0..9e376b458e 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d88b808d4..e40765fb4d 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1bd49ce278..5ca6062301 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9f9b6fcb4c..3af30db196 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1eb7e5a432..914dde28f0 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ace89f94d..99b8965b5e 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7221044f7a..fa330bdd03 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fa5f96f871..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-10-28 14:08+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 3d8f62242d..dab172cd5f 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 74f09c9f8d..1f5ef4f226 100644 --- a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 410d39cc19..141f81e507 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4355282fe9..9675f2652b 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a56688a6f7..61f5ec4ad3 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2863b8d4ef..9ef167fb63 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cca4508e9d..56a4181752 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 18019abda5..ceeb977102 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8c4c2436ed..a9301f6fb2 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bb034daf20..6f6655533d 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2e8de99856..63f5ce3d66 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 975393d8c9..d030ab164e 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a57494b023..c773f5869f 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 26e4902154..24ab87afd4 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:54+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c83fff1dfe..0f6a3ed76a 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e64d847a68..6c3bb6f63e 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3b75d7c791..1ba577637d 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:55+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3aea5384d4..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-10-28 14:08+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 cc41ad2cd7..cf28b2d3f6 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index abb895bfd3..5bde5b7ef6 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:58+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 15501f8dd5..9081e64a6e 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index c034b8aa12..836794185d 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po index d3a9bbf13a..f449868b26 100644 --- a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 3c28a91f39..126ecc6421 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ed19a0bf46..2f7551d6ad 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 63f9ec0a74..63d8579d7b 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b0b6766ff..3e25328438 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ec35f226f6..c84ba31fc7 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b66d3283c..c43c6992f3 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 da964a7e75..02d5f87f64 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 81a6ac414d..c2814519c1 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:10:59+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 24f487186c..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-10-28 14:08+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 1763d83ab7..a78787f6d6 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 53a70b322e..99c8388cae 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 6685da1a0c..38bfb15038 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e3cf800c1e..9ded06f797 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a401d7659c..20b1091d9c 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2f48939bcf..adc0d4a39c 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 988460d1df..09346b8cd2 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:09+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 51f121f38b..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-10-28 14:08+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 f2f93587a5..fd2ca668ac 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 73b99b9a8d..e589fbfdc0 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:00+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3d29436aff..e69a2f59af 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 985d4d020f..9884db7258 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 5418de1dc3..27219cc93b 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b030891433..f9c2e6d01c 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 851ac9dfb7..affaae0fd1 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5812c2bd7a..4c82e793bc 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ac3e9dca6..63eade171f 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5145490de4..8dce3cc8cc 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e84b71bfad..b380430157 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5a0370d659..97ede495fa 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f5dd3e7565..e814b81112 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:01+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 83ee9f2122..f136149265 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ca978ca337..08f1d6bcc6 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 73f2ea232b..f1e615b34c 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 04b209f816..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-10-28 14:08+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 9e4efdb182..284d1aa9c5 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 292b5d1148..9770c52f8d 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bafe94e290..048cd2a747 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 95d55daf92..ae38fdb07e 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ec2ec8f01c..23965d2e92 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5005c66562..c0a8e96a99 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d2fffb22f3..22a506fdb6 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c62cbe295a..917f25acb2 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:02+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 76fb83cde7..f929831408 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cc42045e2e..6083bb7775 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bb8be01cd3..dc0312e6bf 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e2df92af04..0eca2a7097 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ec7679d436..1526011df0 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 78a15d2be0..3e6c40ac98 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b1d6bb41e8..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-10-28 14:08+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 index 37aa939f34..87adad0e85 100644 --- a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 62e64d3683..c462fb8a3b 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:03+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 71fd06414c..a7b560df6d 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ee8340a0b..1e6298821e 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6830ed9a70..e3c8d22fc0 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 718f68d366..50771c35fa 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d3d0ab0b14..980f41c1d9 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 14d92bdad0..a24253a695 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:04+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5ee29d984a..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-10-28 14:08+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 24b3571598..dff83a2518 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 75da087cfb..3f40764d35 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e708c6a953..6a4f05431d 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -50,7 +50,7 @@ msgstr "No hi ha cap usuari per a aquest codi de confirmació." #. 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." diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index da78abec4c..96395ecea7 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:05+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c95d0d6975..4fb47d881a 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 678296f2f5..3b4b205df2 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 96404a9416..20b182a892 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0fbd8ae04b..ec3476be71 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5169263fff..1cb03ddecc 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 53db4b6c6c..1863578fc5 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2ba8acc0de..68477b4171 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f48c9e8014..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-10-28 14:08+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 bc7b11e105..835d047b08 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:06+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3bf34c59e6..8f9b9d6a16 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 8957ae70df..4c743fd311 100644 --- a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 37c1706b5b..8a575d7f59 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 432226a182..b48261bd6d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 25ec12c263..16dce6138a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c91d148425..db3361d7df 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 95c377a762..f2e9dd70e3 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 09e9239a62..3d9e730791 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ba32d63395..eacd93b77b 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dd4e2e93bb..35bd91a1f5 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fa8ac05aa0..7acaf4980a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:07+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e0dd3d2991..8a8b76ee1d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:08+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 82ed858a61..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-10-28 14:08+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 8333ffb9e0..4e9112ee7b 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b591e635d5..7c9dbf6b3b 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index c6ef2efda7..b6ff2ed76f 100644 --- a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index 0637f9160f..bdca389efc 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 00be03c1f9..a17b9d600e 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5a731e61b2..8077fea630 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c5b9e31c9c..4900c8dde2 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7960ba7ede..4e31a7062e 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 961c43a360..1e515d4446 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3a9cd170ea..0342ce4702 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1f54991265..9f4d816d5b 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 46f5005381..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-10-28 14:08+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 5aea3ff76a..f8bf6e5849 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b492df688e..91e7e58919 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index b712bef397..88f40271c5 100644 --- a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:22+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index 9e8cd1ce81..85592bbeb8 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 043d91dd49..d4561b60f7 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c3dceb7727..f7ec8452a2 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f2f1779e7d..1134546b4d 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dfb154d759..9b18d5ab5b 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4346aee2dc..89c52b714d 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6bf9aab09e..11cc143093 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 88bd1259a7..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-10-28 14:08+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 9d31537538..5af891e128 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 494352cf04..ebf4600c78 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6e80d0d16d..67ffc4df73 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a7ec3262e3..df786477c8 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1aabe59c71..15fc4fe075 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ac9b800381..d340ed6f4a 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1686bdd0b4..9c0a65315e 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c81fc7cfab..0d59b3ab3c 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4bb981ffb1..aade3ce5ad 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 406bb3db88..5f6d8ef063 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:10+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3414c0f05b..b137169c8d 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6a4425719f..5283eb4c88 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1b1813fa5a..3ce28a6715 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2a395afe31..40fc605f10 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d674bebf40..ab83ecb2a2 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:11+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0fb973d9b6..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-10-28 14:08+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 index 95e1b284b9..4e3fe98bbb 100644 --- a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:13+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -108,39 +108,39 @@ msgstr "No existeix el perfil." #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" -msgstr "" +msgstr "Subscrit" #. TRANS: Form legend. msgid "Unsubscribe from this search" -msgstr "" +msgstr "Cancel·la la subscripció d'aquesta cerca" #. TRANS: Button text for unsubscribing from a text search. msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "" +msgstr "Cancel·la la subscripció" #. TRANS: Button title for unsubscribing from a text search. msgid "Unsubscribe from this search." -msgstr "" +msgstr "Cancel·la la subscripció d'aquesta cerca." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" -msgstr "" +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 "" +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 "" +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 "" +msgstr "Esteu subscrit a la cerca «%s»." #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given search." @@ -188,7 +188,7 @@ msgstr "No esteu seguint cap cerca." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "\", \"" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index bb30a09c37..4cb6c489a0 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a2e310ac77..235bba44a0 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9a47b190e7..a5426941ab 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 befc7a7485..47297b115a 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 33b2bd34ed..5e256f8475 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c1c0d58a55..6d67bb638e 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ecc5d2e920..7bade7d40c 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:14+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cadb509abb..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-10-28 14:08+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 c29243d7ba..6ee566097c 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 03bc38a0a1..9f6020cc58 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dfba67ab2c..cece9609ba 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 be79ccc7a1..c171d03775 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bb7f6bf44d..266b6a647a 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8955ffed71..d4d7d464e1 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7c8a842c8e..95a35d6fb9 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b6f516d56..790dfbb0dc 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 140f5ea15e..7fc8fd8b43 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eabb936179..be87ceb1e7 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 665aa1ca29..3f2ab8ead5 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 67dcac4d61..b7b3120879 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 04d18c4c64..6bca38ba4b 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 27a7db75b0..9d2b93db78 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:15+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 883eed7a7f..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-10-28 14:08+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 1d47e7f1f6..0b960dd2da 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1bac172912..abb1e4c8d6 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5b15334216..dfdd897a2b 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1e3a50d17f..edd6d10697 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9473904167..9e9f552504 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c29f8dd955..77a68ee456 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 dabdbdc015..3f96ff2d18 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 176065a447..87cd55c3b7 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ed672b688..7c1d381ca9 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 904e997dcf..2f8a36e288 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1cd8b44ac4..8eba959c96 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 199b937a8f..5777fc1c63 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fd0bd6852c..c09809dcf4 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:16+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8fb2bf673c..82014ae8a0 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 86fe059114..4b94e1b7bd 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 70114d2257..342b30bb0b 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e66011d92c..c23e259696 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:17+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9602ae398f..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-10-28 14:08+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 092eaffd30..cb100737c7 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3aefb72408..102775284d 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f965b5d485..b4a66087d2 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 004789803f..f6c6a77744 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6e2f5d0073..c159513a27 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1883be3a9b..120af3be84 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3f00547814..677d885dfc 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 784e87ce73..7bb97d08ad 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f8dd8bb343..48c6e7b357 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:18+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d4ae471ed8..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-10-28 14:08+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 fba86ed074..789a321f42 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4dbd4802ae..c89a1caf29 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 1d573879b9..296fa01a16 100644 --- a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index d1755e2a9e..917c3539e5 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bfaa137f01..fac6465169 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 519e676697..1e09bf084a 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e45bce3c6f..8bf83f7505 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ec22bd6614..07fbb4a54a 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 496ecaef2e..c9930c77b9 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ee86a1295c..99c61436c2 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 af1e5dff95..58b3cfa6df 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:19+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 20ecaa3979..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-10-28 14:08+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 4e1e918f01..e6ca483d8b 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 082e3225c1..66e48da92d 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a01db973ad..7a69137565 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 19155d75b6..79b69a18a8 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e2774bd268..2d73d54f9a 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cd4b3dcc80..10436a2094 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d2c4e87d17..7943f4abf4 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d9a7361402..8ec432b067 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:20+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e5fa5da646..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-10-28 14:08+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 a7688345c9..ff1a5349f2 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a198815cb1..738b06aef7 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e3c10c8f49..7f9e93dd70 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fb5d4ebd51..7aaff92e97 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d84955df86..80b1797670 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f69c5ebc24..a634f6f664 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7d9fbf4839..857ed9f39f 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:21+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 733a5f113f..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-10-28 14:08+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 e924ed21b2..d2b3a518bd 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7b64ea0866..ba734e4dd5 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index e6ea0d7f22..f4438f8c44 100644 --- a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index 28f59d144d..b394536d5b 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ad70a12cba..f1aada4a3a 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:23+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8a37c63550..b3647d581f 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 015d2087d2..c76696ad6a 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4f1c52116a..f6fbfb0998 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 41579560bc..dbfa7835fd 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 13a8492540..cb05fad801 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:24+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 1c48562f82..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-10-28 14:08+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/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po index 3fcc4bf897..d59a0f7497 100644 --- a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -26,7 +26,7 @@ msgstr "" #. TRANS: %s is the invalid feed URL. #, php-format msgid "Invalid feed URL: %s." -msgstr "" +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. diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 17e712a29d..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,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -66,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." @@ -137,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 "" @@ -149,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 44edba270d..d9af452bfd 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eb5f3f0afa..5c48789301 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 43f4dd2763..e6989e28e5 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 da548f7c73..b7f91a8dad 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 827e6943ea..c06ee3c1fd 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c3cc3dcc32..a527cfd482 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:26+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cf4ef598a5..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-10-28 14:08+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 cc4d385880..a73b7703a6 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -32,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 4f2a287e2c..96602387a7 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c0cca32097..c63d16bd0d 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 59b87adf74..5f2ad057e1 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a857ff3503..f85f7b963d 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 093dc6f864..14853032ad 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 48b59bd06c..2ee7f699ad 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 937a211bd0..b382a137c7 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 38d17cf09d..3a739e0022 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d7afa93e30..13204a3eac 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:27+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ec8adfecc4..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-10-28 14:08+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 d145612b78..13af840a80 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 78be2908f5..a561ec8065 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d7873ddda4..211159cba7 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9e174e72dc..55abb71758 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 305c23beb8..b75ddd6bc8 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0ca60efc3b..886847f1fa 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a43b04d483..25f5183bed 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3da8551fb0..49314254c4 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c723ba9b2d..0fff9d1a61 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4256d2a1ae..9d1c491960 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8171b50c16..119b564eb4 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 12169a8653..b51a638fe0 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:28+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 54c0a707ad..d7d1d5021b 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 494b7f241f..df10903670 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bc383e3b88..7b19a0c9e9 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:29+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 077cdc9a05..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-10-28 14:08+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 4362e806ea..a4fbaa884f 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c625a7d632..05301e1faf 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 5444a964d6..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,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:30+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -32,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." @@ -64,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" @@ -142,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 5ff30b45b6..116d6d5cb8 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6def9d198c..7893558aa4 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 fef789359b..9097dbeb7b 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8422d75bf2..a17a34cd50 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index af5817e39a..f10699bbe5 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ac9583adf7..d90a9fdca8 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 be089d0426..a99d2fc276 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3d88e5262e..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-10-28 14:08+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 23ddf7b5fb..8e02f84226 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a3bf38b669..a190f579b5 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b66835621e..14b4c9dd00 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:31+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 87234f94ef..689b29440f 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 55341ecf4f..9101c1092d 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9d53ebb222..2a0db6c3c8 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f05496e3d9..eb41e989c1 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 af6f1fb1cb..1fe3da647a 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3ba0e4a3fb..c6aad5b972 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b94c6e22ad..4aaf92ce62 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 47d6bca3a9..3ba3c739de 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6c68933b49..359ba57fd0 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 91c36623e9..22a9c9d51d 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6b18fda435..48c67127bc 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 620dd8abc0..c34fbceff2 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 03b3a6ac9f..a41e729c70 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7838297f9e..0e5c1efefb 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:32+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 92a307715f..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-10-28 14:08+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 099e5ebd26..101a113b36 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7fb34c002f..516adfb2b2 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 eadac2a395..8477174b59 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 87a96a6831..36494fc981 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5ae26a54af..44ab603f27 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 index 70088d2599..779f5d9c7c 100644 --- a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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: 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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 930f8d982b..64d56c3f3b 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d08996f5c..23848b0ff9 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 078e0157c2..5a04705085 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4863cd13f5..0013b1efbd 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 038da9a19d..4388cde5d6 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f267c665dd..8ba17f964b 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b4f8e5bd0c..3acf346269 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7602b4f851..f2be69d6da 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 228dde0b26..4520b280c5 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8f65647746..47fa2ddd36 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a20620d71d..a15cdc7616 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:33+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0b3bf50fcb..af65457dad 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:34+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c682d219cc..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-10-28 14:08+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 bbd2fb1eb1..c91507da9c 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 9cc9f293e9..7e5f482a6a 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index ef0c578b9e..a0db84d405 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -53,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 @@ -120,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." @@ -129,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." @@ -150,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 " @@ -287,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" @@ -305,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. @@ -330,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" @@ -343,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" @@ -360,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!" @@ -376,25 +365,25 @@ 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. @@ -403,9 +392,8 @@ 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" @@ -416,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 "" @@ -433,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 c5940b63cd..47cb417ac4 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index ba4e70de46..e2e4b5265e 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 892c15263e..e7637c71ad 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index af50223bc9..7c8a617938 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:39+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ac509a63e7..3d655bfadf 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 936ef66b76..3809adbbe0 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7ef76b6674..f6b0a83fbe 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index d1a2ff7ee4..4aabe5e42a 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6124040870..9ee4510778 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21a8f45917..93ef9e650c 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 592ae4cee2..437efad1d4 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:40+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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 1d409f7598..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-10-28 14:08+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 e36511c2b5..3f4bd92a6d 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4bb32b6ee6..38aa810597 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 897c608a74..07df027d83 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 df8ed56542..1490209763 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 cf917ecef3..4212a96c3e 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a313642fa4..f05d1d86fd 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 93a40e1b30..d4dd7eb9d4 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 77ddf0bbc6..4a7ce81178 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ae201df643..36c81dba68 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 40b73769ce..705e8ca980 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c7844043d9..e760bc3e5c 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:42+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a426814225..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-10-28 14:08+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 22c107ae80..97d78e30f5 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d8aaf4a069..077e3f5891 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e752ce3d3b..3a1c1e83dd 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 806a481a92..cf3914e609 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 49aa33159f..416ffed51f 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a1de2ada3c..bb5aa7fec9 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4d7b7f17d3..23e8b2c9f0 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 28ac99b9a4..5986c54573 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b5de74aa9a..79b377a999 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 668b9d586d..ca1e32b3c2 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 42c3ea6fd2..0658894c1b 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e813f7e1a3..17e853550e 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 39d83b0c5c..93c60de289 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 259854a17c..162285322a 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 6ad99b5c0c..4f338de7a1 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 858c838c97..e967595898 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:43+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e67ade6a08..fbcfdeab51 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 54fc5999cc..23e3ffc301 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0255a95d8c..691972a2c0 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 aa2ffeeecd..56c3c2ebc3 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 90abf9754d..2976e5860f 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d4044ca536..1ad517c065 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 3cb0df56b0..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-10-28 14:08+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 dfb068acde..b4dedafb2a 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:44+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c2462799a7..ab797b875f 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8664dc4714..c41ba40aad 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 970c84892d..a190f1cfdc 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 ed05f39bf9..f35aa55f70 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5f67bcecf5..d884d4739e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 61dd7f3e0b..067700435c 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 214854b5bf..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-10-28 14:08+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 d68bbec2ca..89bf6395de 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 19ba7bed0a..5044025cfc 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:45+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5d541a2e1d..d5ec48bb4a 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 861d045ad4..87d0a1b950 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 734819b571..b01e2d7dfa 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 f7cc8f0941..8dfc117d59 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 edd92793cf..d8e59c57eb 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9fa7a14ea2..a9988a7380 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d728ba8a6e..18cfe1d66d 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b881e90176..e3a44bcced 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2e2bb817bb..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-10-28 14:08+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 4fe84ef31d..754fc10027 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d490794268..cde956d3f7 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d3260d0a60..42665eef7a 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:46+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e8699052c1..bec0ca69ae 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a928320ccc..a56959103d 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 21b0f1cf2d..538669fe25 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 13b381f52f..895ff26a0e 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 0f24cdca90..a45a5cd0e9 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4f58b3d0c2..9e2510a9b5 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9fd278ac52..f34443af68 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a5157d9ae3..6b6565730b 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d062da4d67..0fd4a3918e 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 60b6e1ebf5..950723a469 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 5e1c6ef3e4..6f3ac9953e 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 50ec069c3d..70df6c8b0d 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e137b3f2ae..fb2771a626 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 c65688d0b5..c3d934f85e 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 8ce9245089..cb7e110cb9 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 e26490dfd5..d273856b1a 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 2b9b9dc894..a7d2b65fbb 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:47+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 4ba45ac3fd..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-10-28 14:08+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 4a280ef160..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,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" @@ -35,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" @@ -53,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 48d3b09adf..3bcc1dc720 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 9dac5c8873..f46d1be274 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 7960ddedc2..6ee96eb6c3 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:49+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 36e8d6cc24..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-10-28 14:08+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 b5686b062d..f1df2f5bcb 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 b5860429e0..bdd5f40bec 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index ddd6e430d8..5dbf7ebfa8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 09f3b41c66..7689dd9a31 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 bfc126946d..85378aa2f3 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 d86a721f9f..d0c2420bde 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 a27e0be190..ea9330b573 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 171614929c..23776adb86 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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 50c6da0832..aeb3b6a240 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-28 14:08+0000\n" -"PO-Revision-Date: 2011-10-28 14:11:53+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 (r101121); Translate extension (2011-10-" -"27)\n" +"X-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" From 8cdbef098bf0a5057619ced522f8b2e63d78fbc1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 26 Nov 2011 09:54:41 -0500 Subject: [PATCH 087/134] die when we get a bad connection error --- lib/framework.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/framework.php b/lib/framework.php index 4458313eb9..5d163547f7 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -160,6 +160,15 @@ function PEAR_ErrorToPEAR_Exception($err) common_log(LOG_ERR, "PEAR Error: $msg ($userInfo)"); + // HACK: queue handlers get kicked by the long-query killer, and + // keep the same broken connection. We die here to get a new + // process started. + + if (php_sapi_name() == 'cli' && preg_match('/nativecode=2006/', $msg)) { + common_log(LOG_ERR, "Lost DB connection; dying."); + exit(100); + } + if ($err->getCode()) { throw new PEAR_Exception($msg, $err, $err->getCode()); } else { From 7af29bf0d28d363ff199e1aea199531d9881bc60 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 26 Nov 2011 10:20:32 -0500 Subject: [PATCH 088/134] nativecode shows up in userinfo --- lib/framework.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/framework.php b/lib/framework.php index 5d163547f7..e7a1829bc6 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -164,7 +164,7 @@ function PEAR_ErrorToPEAR_Exception($err) // keep the same broken connection. We die here to get a new // process started. - if (php_sapi_name() == 'cli' && preg_match('/nativecode=2006/', $msg)) { + if (php_sapi_name() == 'cli' && preg_match('/nativecode=2006/', $userInfo)) { common_log(LOG_ERR, "Lost DB connection; dying."); exit(100); } From ad2fd9abd43e55e53efa43e781e2877d3e7eec24 Mon Sep 17 00:00:00 2001 From: Michele macno Azzolari Date: Fri, 2 Dec 2011 15:47:35 -0500 Subject: [PATCH 089/134] Fix whitescreen on recoverpassword with unknown user --- actions/recoverpassword.php | 3 ++- classes/User.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index d81c13b005..d8f95b24c3 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -288,10 +288,11 @@ class RecoverpasswordAction extends Action 'have been sent to the email address registered to your ' . 'account.'); $this->success = true; - $this->showPage(); } catch (Exception $e) { $this->success = false; + $this->msg = $e->getMessage(); } + $this->showPage(); } function resetPassword() diff --git a/classes/User.php b/classes/User.php index 65bc0485bf..726a7e5c30 100644 --- a/classes/User.php +++ b/classes/User.php @@ -1086,7 +1086,7 @@ class User extends Managed_DataObject if (!$user) { // TRANS: Information on password recovery form if no known username or e-mail address was specified. - throw new ClientError(_('No user with that email address or username.')); + throw new ClientException(_('No user with that email address or username.')); return; } From 03657a90e1b3792be2ef0f518da217d4bd9c95df Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 3 Dec 2011 13:09:10 +0100 Subject: [PATCH 090/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 8 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 170 ++- locale/bg/LC_MESSAGES/statusnet.po | 8 +- locale/br/LC_MESSAGES/statusnet.po | 10 +- locale/ca/LC_MESSAGES/statusnet.po | 8 +- locale/cs/LC_MESSAGES/statusnet.po | 8 +- locale/de/LC_MESSAGES/statusnet.po | 184 ++- locale/en_GB/LC_MESSAGES/statusnet.po | 8 +- locale/eo/LC_MESSAGES/statusnet.po | 8 +- locale/es/LC_MESSAGES/statusnet.po | 279 ++-- locale/eu/LC_MESSAGES/statusnet.po | 8 +- locale/fa/LC_MESSAGES/statusnet.po | 8 +- locale/fi/LC_MESSAGES/statusnet.po | 8 +- locale/fr/LC_MESSAGES/statusnet.po | 55 +- locale/fur/LC_MESSAGES/statusnet.po | 8 +- locale/gl/LC_MESSAGES/statusnet.po | 281 ++-- locale/he/LC_MESSAGES/statusnet.po | 8 +- locale/hsb/LC_MESSAGES/statusnet.po | 8 +- locale/hu/LC_MESSAGES/statusnet.po | 24 +- locale/ia/LC_MESSAGES/statusnet.po | 8 +- locale/it/LC_MESSAGES/statusnet.po | 8 +- locale/ja/LC_MESSAGES/statusnet.po | 10 +- locale/ka/LC_MESSAGES/statusnet.po | 8 +- locale/ko/LC_MESSAGES/statusnet.po | 8 +- locale/mk/LC_MESSAGES/statusnet.po | 10 +- locale/ml/LC_MESSAGES/statusnet.po | 8 +- locale/nb/LC_MESSAGES/statusnet.po | 8 +- locale/nl/LC_MESSAGES/statusnet.po | 18 +- locale/pl/LC_MESSAGES/statusnet.po | 13 +- locale/pt/LC_MESSAGES/statusnet.po | 8 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 8 +- locale/ru/LC_MESSAGES/statusnet.po | 8 +- locale/statusnet.pot | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 8 +- locale/te/LC_MESSAGES/statusnet.po | 8 +- locale/tl/LC_MESSAGES/statusnet.po | 8 +- locale/uk/LC_MESSAGES/statusnet.po | 8 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 8 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 6 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 6 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 6 +- .../locale/de/LC_MESSAGES/AccountManager.po | 6 +- .../locale/eu/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 6 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/he/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 6 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 6 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 6 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 6 +- plugins/Activity/locale/Activity.pot | 2 +- .../locale/ar/LC_MESSAGES/Activity.po | 6 +- .../locale/ca/LC_MESSAGES/Activity.po | 6 +- .../locale/de/LC_MESSAGES/Activity.po | 6 +- .../locale/eu/LC_MESSAGES/Activity.po | 6 +- .../locale/gl/LC_MESSAGES/Activity.po | 121 ++ .../locale/ia/LC_MESSAGES/Activity.po | 6 +- .../locale/mk/LC_MESSAGES/Activity.po | 6 +- .../locale/nl/LC_MESSAGES/Activity.po | 6 +- .../locale/ru/LC_MESSAGES/Activity.po | 6 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/eu/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 22 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/eu/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/gl/LC_MESSAGES/Aim.po | 46 + plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 6 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 6 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 14 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 6 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 6 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/gl/LC_MESSAGES/AutoSandbox.po | 47 + .../locale/ia/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 6 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/eu/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 6 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 6 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 13 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 6 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 6 +- .../locale/de/LC_MESSAGES/Blacklist.po | 6 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 6 +- .../locale/gl/LC_MESSAGES/Blacklist.po | 104 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 6 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 6 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 6 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 6 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 6 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 6 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 6 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/eu/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 30 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 6 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 6 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/gl/LC_MESSAGES/BlogspamNet.po | 45 + .../locale/ia/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 6 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 6 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 6 +- .../locale/de/LC_MESSAGES/Bookmark.po | 6 +- .../locale/eu/LC_MESSAGES/Bookmark.po | 6 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 6 +- .../locale/gl/LC_MESSAGES/Bookmark.po | 264 ++++ .../locale/ia/LC_MESSAGES/Bookmark.po | 6 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 6 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 6 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 6 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 6 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 6 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 6 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 6 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 6 +- .../locale/br/LC_MESSAGES/CacheLog.po | 6 +- .../locale/de/LC_MESSAGES/CacheLog.po | 6 +- .../locale/es/LC_MESSAGES/CacheLog.po | 6 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 6 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/he/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 6 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 6 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 6 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 6 +- .../br/LC_MESSAGES/CasAuthentication.po | 6 +- .../ca/LC_MESSAGES/CasAuthentication.po | 10 +- .../de/LC_MESSAGES/CasAuthentication.po | 6 +- .../es/LC_MESSAGES/CasAuthentication.po | 6 +- .../eu/LC_MESSAGES/CasAuthentication.po | 6 +- .../fr/LC_MESSAGES/CasAuthentication.po | 6 +- .../gl/LC_MESSAGES/CasAuthentication.po | 44 +- .../hu/LC_MESSAGES/CasAuthentication.po | 6 +- .../ia/LC_MESSAGES/CasAuthentication.po | 6 +- .../mk/LC_MESSAGES/CasAuthentication.po | 6 +- .../nl/LC_MESSAGES/CasAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 6 +- .../ru/LC_MESSAGES/CasAuthentication.po | 6 +- .../tl/LC_MESSAGES/CasAuthentication.po | 6 +- .../uk/LC_MESSAGES/CasAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 6 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 6 +- .../de/LC_MESSAGES/ClientSideShorten.po | 6 +- .../es/LC_MESSAGES/ClientSideShorten.po | 6 +- .../eu/LC_MESSAGES/ClientSideShorten.po | 6 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 6 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../he/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 6 +- .../id/LC_MESSAGES/ClientSideShorten.po | 6 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 6 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 6 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 6 +- .../locale/DirectionDetector.pot | 2 +- .../ast/LC_MESSAGES/DirectionDetector.po | 6 +- .../LC_MESSAGES/DirectionDetector.po | 6 +- .../br/LC_MESSAGES/DirectionDetector.po | 6 +- .../de/LC_MESSAGES/DirectionDetector.po | 6 +- .../es/LC_MESSAGES/DirectionDetector.po | 6 +- .../fi/LC_MESSAGES/DirectionDetector.po | 6 +- .../fr/LC_MESSAGES/DirectionDetector.po | 6 +- .../gl/LC_MESSAGES/DirectionDetector.po | 6 +- .../he/LC_MESSAGES/DirectionDetector.po | 6 +- .../ia/LC_MESSAGES/DirectionDetector.po | 6 +- .../id/LC_MESSAGES/DirectionDetector.po | 6 +- .../ja/LC_MESSAGES/DirectionDetector.po | 6 +- .../lb/LC_MESSAGES/DirectionDetector.po | 6 +- .../mk/LC_MESSAGES/DirectionDetector.po | 6 +- .../nb/LC_MESSAGES/DirectionDetector.po | 6 +- .../nl/LC_MESSAGES/DirectionDetector.po | 6 +- .../pt/LC_MESSAGES/DirectionDetector.po | 6 +- .../ru/LC_MESSAGES/DirectionDetector.po | 6 +- .../tl/LC_MESSAGES/DirectionDetector.po | 6 +- .../uk/LC_MESSAGES/DirectionDetector.po | 6 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 6 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 6 +- .../locale/ca/LC_MESSAGES/Directory.po | 6 +- .../locale/de/LC_MESSAGES/Directory.po | 6 +- .../locale/eu/LC_MESSAGES/Directory.po | 6 +- .../locale/fi/LC_MESSAGES/Directory.po | 6 +- .../locale/fr/LC_MESSAGES/Directory.po | 6 +- .../locale/gl/LC_MESSAGES/Directory.po | 48 +- .../locale/ia/LC_MESSAGES/Directory.po | 6 +- .../locale/ja/LC_MESSAGES/Directory.po | 6 +- .../locale/mk/LC_MESSAGES/Directory.po | 6 +- .../locale/nl/LC_MESSAGES/Directory.po | 6 +- .../locale/sv/LC_MESSAGES/Directory.po | 6 +- .../locale/tl/LC_MESSAGES/Directory.po | 6 +- .../locale/uk/LC_MESSAGES/Directory.po | 6 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/gl/LC_MESSAGES/Disqus.po | 26 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/gl/LC_MESSAGES/DomainWhitelist.po | 81 ++ .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 6 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../eu/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 6 +- .../br/LC_MESSAGES/EmailRegistration.po | 6 +- .../ca/LC_MESSAGES/EmailRegistration.po | 6 +- .../de/LC_MESSAGES/EmailRegistration.po | 6 +- .../eu/LC_MESSAGES/EmailRegistration.po | 6 +- .../fr/LC_MESSAGES/EmailRegistration.po | 6 +- .../gl/LC_MESSAGES/EmailRegistration.po | 192 +++ .../hu/LC_MESSAGES/EmailRegistration.po | 6 +- .../ia/LC_MESSAGES/EmailRegistration.po | 6 +- .../mk/LC_MESSAGES/EmailRegistration.po | 6 +- .../nl/LC_MESSAGES/EmailRegistration.po | 6 +- .../sv/LC_MESSAGES/EmailRegistration.po | 6 +- .../tl/LC_MESSAGES/EmailRegistration.po | 6 +- .../uk/LC_MESSAGES/EmailRegistration.po | 6 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/eu/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/gl/LC_MESSAGES/EmailReminder.po | 53 + .../locale/ia/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 6 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/eu/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/gl/LC_MESSAGES/EmailSummary.po | 54 + .../locale/ia/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 6 +- plugins/Event/locale/Event.pot | 12 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/eu/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 106 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 6 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/eu/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/gl/LC_MESSAGES/ExtendedProfile.po | 235 +++ .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/gl/LC_MESSAGES/FacebookBridge.po | 374 +++++ .../locale/ia/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 6 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 6 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/eu/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 6 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eu/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 6 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ca/LC_MESSAGES/Geonames.po | 6 +- .../locale/de/LC_MESSAGES/Geonames.po | 6 +- .../locale/eu/LC_MESSAGES/Geonames.po | 6 +- .../locale/fi/LC_MESSAGES/Geonames.po | 6 +- .../locale/fr/LC_MESSAGES/Geonames.po | 6 +- .../locale/gl/LC_MESSAGES/Geonames.po | 52 + .../locale/ia/LC_MESSAGES/Geonames.po | 6 +- .../locale/mk/LC_MESSAGES/Geonames.po | 6 +- .../locale/nl/LC_MESSAGES/Geonames.po | 6 +- .../locale/sv/LC_MESSAGES/Geonames.po | 6 +- .../locale/tl/LC_MESSAGES/Geonames.po | 6 +- .../locale/uk/LC_MESSAGES/Geonames.po | 6 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 6 +- .../locale/de/LC_MESSAGES/Gravatar.po | 6 +- .../locale/es/LC_MESSAGES/Gravatar.po | 6 +- .../locale/eu/LC_MESSAGES/Gravatar.po | 6 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 6 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/he/LC_MESSAGES/Gravatar.po | 6 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 6 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 6 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 6 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 6 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/eu/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/gl/LC_MESSAGES/GroupFavorited.po | 44 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../eu/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../gl/LC_MESSAGES/GroupPrivateMessage.po | 293 ++++ .../ia/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/eu/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/gl/LC_MESSAGES/Imap.po | 60 + plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 6 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/eu/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/ca/LC_MESSAGES/Irc.po | 85 ++ plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/gl/LC_MESSAGES/Irc.po | 87 ++ plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 6 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../gl/LC_MESSAGES/LdapAuthentication.po | 48 + .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../gl/LC_MESSAGES/LdapAuthorization.po | 43 + .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/ca/LC_MESSAGES/LdapCommon.po | 47 + .../locale/de/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/gl/LC_MESSAGES/LdapCommon.po | 47 + .../locale/ia/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 6 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 7 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/eu/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/ca/LC_MESSAGES/LinkPreview.po | 41 + .../locale/de/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/gl/LC_MESSAGES/LinkPreview.po | 41 + .../locale/ia/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 6 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 6 +- .../locale/ca/LC_MESSAGES/Linkback.po | 6 +- .../locale/de/LC_MESSAGES/Linkback.po | 6 +- .../locale/es/LC_MESSAGES/Linkback.po | 6 +- .../locale/fi/LC_MESSAGES/Linkback.po | 6 +- .../locale/fr/LC_MESSAGES/Linkback.po | 6 +- .../locale/gl/LC_MESSAGES/Linkback.po | 6 +- .../locale/he/LC_MESSAGES/Linkback.po | 6 +- .../locale/ia/LC_MESSAGES/Linkback.po | 6 +- .../locale/id/LC_MESSAGES/Linkback.po | 6 +- .../locale/mk/LC_MESSAGES/Linkback.po | 6 +- .../locale/nb/LC_MESSAGES/Linkback.po | 6 +- .../locale/nl/LC_MESSAGES/Linkback.po | 6 +- .../locale/pt/LC_MESSAGES/Linkback.po | 6 +- .../locale/ru/LC_MESSAGES/Linkback.po | 6 +- .../locale/tl/LC_MESSAGES/Linkback.po | 6 +- .../locale/uk/LC_MESSAGES/Linkback.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 6 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 14 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 6 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/gl/LC_MESSAGES/Memcache.po | 6 +- .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/sv/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/gl/LC_MESSAGES/Memcached.po | 6 +- .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/sv/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/gl/LC_MESSAGES/Meteor.po | 38 + .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 6 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/gl/LC_MESSAGES/Minify.po | 43 + .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 39 + .../locale/ia/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 6 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/gl/LC_MESSAGES/ModPlus.po | 61 + .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 6 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 6 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/eu/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/gl/LC_MESSAGES/Msn.po | 54 + plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 6 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ca/LC_MESSAGES/NoticeTitle.po | 15 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/eu/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/gl/LC_MESSAGES/NoticeTitle.po | 40 + .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- plugins/OMB/locale/OMB.pot | 2 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/de/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/gl/LC_MESSAGES/OMB.po | 61 + plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 6 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 12 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/gl/LC_MESSAGES/OStatus.po | 1262 ++++++++++------- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 6 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 6 +- .../OfflineBackup/locale/OfflineBackup.pot | 2 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/eu/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/gl/LC_MESSAGES/OpenID.po | 832 ++++++----- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 6 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po | 95 ++ plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 6 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 6 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/eu/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/gl/LC_MESSAGES/Poll.po | 149 ++ plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 6 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/gl/LC_MESSAGES/QnA.po | 306 ++++ plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 6 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 7 +- .../locale/gl/LC_MESSAGES/RSSCloud.po | 92 ++ .../locale/ia/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 6 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 6 +- .../locale/ar/LC_MESSAGES/Realtime.po | 6 +- .../locale/br/LC_MESSAGES/Realtime.po | 6 +- .../locale/ca/LC_MESSAGES/Realtime.po | 6 +- .../locale/de/LC_MESSAGES/Realtime.po | 6 +- .../locale/fr/LC_MESSAGES/Realtime.po | 6 +- .../locale/gl/LC_MESSAGES/Realtime.po | 65 + .../locale/ia/LC_MESSAGES/Realtime.po | 6 +- .../locale/lv/LC_MESSAGES/Realtime.po | 6 +- .../locale/mk/LC_MESSAGES/Realtime.po | 6 +- .../locale/ne/LC_MESSAGES/Realtime.po | 6 +- .../locale/nl/LC_MESSAGES/Realtime.po | 6 +- .../locale/pl/LC_MESSAGES/Realtime.po | 6 +- .../locale/sv/LC_MESSAGES/Realtime.po | 6 +- .../locale/tl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tr/LC_MESSAGES/Realtime.po | 6 +- .../locale/uk/LC_MESSAGES/Realtime.po | 6 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/gl/LC_MESSAGES/Recaptcha.po | 39 + .../locale/ia/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/gl/LC_MESSAGES/RegisterThrottle.po | 39 + .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../gl/LC_MESSAGES/RequireValidatedEmail.po | 106 ++ .../ia/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 6 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 6 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/he/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 6 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 6 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 6 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/gl/LC_MESSAGES/Sample.po | 79 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 6 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 6 +- .../locale/de/LC_MESSAGES/SearchSub.po | 6 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 6 +- .../locale/gl/LC_MESSAGES/SearchSub.po | 227 +++ .../locale/ia/LC_MESSAGES/SearchSub.po | 6 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 6 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 6 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 6 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 6 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/gl/LC_MESSAGES/ShareNotice.po | 54 + .../locale/ia/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 6 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/gl/LC_MESSAGES/Sitemap.po | 79 ++ .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/gl/LC_MESSAGES/SphinxSearch.po | 35 + .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 6 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 6 +- .../locale/de/LC_MESSAGES/SubMirror.po | 6 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 6 +- .../locale/gl/LC_MESSAGES/SubMirror.po | 169 +++ .../locale/ia/LC_MESSAGES/SubMirror.po | 6 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../gl/LC_MESSAGES/SubscriptionThrottle.po | 35 + .../he/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/de/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/gl/LC_MESSAGES/TagSub.po | 150 ++ .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 6 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 6 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 6 +- .../locale/es/LC_MESSAGES/TightUrl.po | 6 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 6 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/he/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 6 +- .../locale/id/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 6 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 6 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 6 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/gl/LC_MESSAGES/TwitterBridge.po | 765 +++++----- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 6 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 6 +- .../locale/de/LC_MESSAGES/UserFlag.po | 6 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 6 +- .../locale/gl/LC_MESSAGES/UserFlag.po | 107 ++ .../locale/ia/LC_MESSAGES/UserFlag.po | 6 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 6 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 6 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 6 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 6 +- .../locale/de/LC_MESSAGES/UserLimit.po | 6 +- .../locale/es/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/he/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 6 +- .../locale/id/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 6 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 6 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/gl/LC_MESSAGES/WikiHashtags.po | 55 + .../locale/ia/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 6 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/gl/LC_MESSAGES/WikiHowProfile.po | 51 + .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 6 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 6 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po | 96 ++ plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 6 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 6 +- .../locale/de/LC_MESSAGES/YammerImport.po | 6 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 127 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 6 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 6 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 6 +- 1622 files changed, 11596 insertions(+), 6619 deletions(-) create mode 100644 plugins/Activity/locale/gl/LC_MESSAGES/Activity.po create mode 100644 plugins/Aim/locale/gl/LC_MESSAGES/Aim.po create mode 100644 plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po create mode 100644 plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po create mode 100644 plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po create mode 100644 plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po create mode 100644 plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po create mode 100644 plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po create mode 100644 plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po create mode 100644 plugins/Imap/locale/gl/LC_MESSAGES/Imap.po create mode 100644 plugins/Irc/locale/ca/LC_MESSAGES/Irc.po create mode 100644 plugins/Irc/locale/gl/LC_MESSAGES/Irc.po create mode 100644 plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po create mode 100644 plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po create mode 100644 plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po create mode 100644 plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po create mode 100644 plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po create mode 100644 plugins/Minify/locale/gl/LC_MESSAGES/Minify.po create mode 100644 plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po create mode 100644 plugins/Msn/locale/gl/LC_MESSAGES/Msn.po create mode 100644 plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/OMB/locale/gl/LC_MESSAGES/OMB.po create mode 100644 plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po create mode 100644 plugins/Poll/locale/gl/LC_MESSAGES/Poll.po create mode 100644 plugins/QnA/locale/gl/LC_MESSAGES/QnA.po create mode 100644 plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po create mode 100644 plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po create mode 100644 plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po create mode 100644 plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po create mode 100644 plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po create mode 100644 plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 10be63ba27..fcf7a0206d 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" @@ -28,7 +28,7 @@ msgstr "" "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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index aaf0be8f0a..4032dd0920 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" @@ -5677,7 +5677,7 @@ msgid "" msgstr "" "Ваш апэратар мабільнай сувязі. Калі Вы ведаеце апэратара, які атрымлівае СМС-" "паведамленьні праз электронную пошту, але якога няма ў гэтым сьпісе, " -"паведамьце нам на адрас %s." +"паведаміце нам на адрас %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. msgid "No code entered." @@ -5690,89 +5690,89 @@ msgstr "Здымкі" #. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" -msgstr "" +msgstr "Кіраваньне канфігурацыяй здымкаў" #. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." -msgstr "" +msgstr "Няслушнае значэньне запуску здымка." #. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." -msgstr "" +msgstr "Частата здымкаў павінна быць лікам." #. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." -msgstr "" +msgstr "Няслушны URL-адрас справаздачы здымка." #. TRANS: Fieldset legend on admin panel for snapshots. msgctxt "LEGEND" msgid "Snapshots" -msgstr "" +msgstr "Здымкі" #. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" -msgstr "" +msgstr "Выпадкова падчас ўэб-зьвяртаньня" #. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" -msgstr "" +msgstr "Як заплянаваная праца" #. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" -msgstr "" +msgstr "Здымкі зьвестак" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. msgid "When to send statistical data to status.net servers." -msgstr "" +msgstr "Калі дасылаць статыстычныя зьвесткі на сэрвэры status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" -msgstr "" +msgstr "Частата" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. msgid "Snapshots will be sent once every N web hits." -msgstr "" +msgstr "Здымкі будуць дасланыя кожныя N наведваньняў сайта." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" -msgstr "" +msgstr "URL-адрас справаздачы" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. msgid "Snapshots will be sent to this URL." -msgstr "" +msgstr "Здымкі будуць дасланыя на гэты URL-адрас." #. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." -msgstr "" +msgstr "Захаваць налады здымкаў." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." -msgstr "" +msgstr "Вы не падпісаны на гэты профіль." #. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. msgid "Could not save subscription." -msgstr "" +msgstr "Немагчыма захаваць падпіску." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "Вы можаце зацьвердзіць толькі ўласную чаргу падпіскі." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. #, php-format msgid "%s subscribers awaiting approval" -msgstr "" +msgstr "Падпісчыкі %s, якія чакаюць зацьверджаньня" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. #, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "" +msgstr "Падпісчыкі %1$s, якія чакаюць зацьверджаньня, старонка %2$d" #. TRANS: Page notice for group members page. msgid "A list of users awaiting approval to subscribe to you." -msgstr "" +msgstr "Сьпіс карыстальнікаў, якія чакаюць Вашага зацьверджаньня на падпіску." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" @@ -5780,58 +5780,60 @@ msgstr "Падпісаны" #. TRANS: Client error displayed when trying to perform an action while not logged in. msgid "You must be logged in to unsubscribe from a list." -msgstr "" +msgstr "Вам неабходна ўвайсьці ў сыстэму, каб адпісацца ад сьпісу." #. TRANS: Client error displayed when trying to perform an action without providing an ID. msgid "No ID given." -msgstr "" +msgstr "Не пададзены ідэнтыфікатар." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "" +msgstr "Немагчыма падпісаць карыстальніка %1$s на сьпіс %2$s: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "" +msgstr "%1$s падпісаны на сьпіс %2$s карыстальніка %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. #, php-format msgid "%s subscribers" -msgstr "" +msgstr "Падпісчыкі %s" #. TRANS: Header for list of subscribers for a user (not first page). #. TRANS: %1$s is the user's nickname, $2$d is the page number. #, php-format msgid "%1$s subscribers, page %2$d" -msgstr "" +msgstr "Падпісчыкі %1$s, старонка %2$d" #. TRANS: Page notice for page with an overview of all subscribers #. TRANS: of the logged in user's own profile. msgid "These are the people who listen to your notices." -msgstr "" +msgstr "Гэта людзі, якія праглядаюць Вашыя запісы." #. TRANS: Page notice for page with an overview of all subscribers of a user other #. TRANS: than the logged in user. %s is the user nickname. #, php-format msgid "These are the people who listen to %s's notices." -msgstr "" +msgstr "Гэта людзі, якія праглядаюць запісы %s." #. TRANS: Subscriber list text when the logged in user has no subscribers. msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor." msgstr "" +"Вы ня маеце падпісчыкаў. Паспрабуйце падпісацца на вядомых Вам людзей, і " +"яны, магчыма, адкажуць узаемнасьцю." #. TRANS: Subscriber list text when looking at the subscribers for a of a user other #. TRANS: than the logged in user that has no subscribers. %s is the user nickname. #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "" +msgstr "%s ня мае падпісчыкаў. Жадаеце быць першым?" #. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. @@ -5843,23 +5845,25 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" +"%s ня мае падпісчыкаў. Чаму б не [стварыць рахунак](%%%%action.register%%%%) " +"і быць першым?" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. #, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "" +msgstr "Падпіскі %1$s, старонка %2$d" #. TRANS: Page notice for page with an overview of all subscriptions #. TRANS: of the logged in user's own profile. msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "Гэта карыстальнікі, запісы якіх Вы чытаеце." #. TRANS: Page notice for page with an overview of all subscriptions of a user other #. TRANS: than the logged in user. %s is the user nickname. #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "Гэта карыстальнікі, запісы якіх чытае %s." #. TRANS: Subscription list text when the logged in user has no subscriptions. #. TRANS: This message contains Markdown URLs. The link description is between @@ -5872,6 +5876,10 @@ msgid "" "members in groups you're interested in and in our [featured users](%%action." "featured%%)." msgstr "" +"Зараз Вы не чытаеце нічыіх запісаў. Паспрабуйце падпісацца на людзей, якіх " +"Вы ведаеце. Паспрабуйце [пашукаць людзей](%%action.peoplesearch%%), " +"паглядзіце удзельнікаў групаў, якія Вам цікавыя, і паглядзіце [ўдзельнікаў " +"вартых увагі](%%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. @@ -5879,211 +5887,217 @@ msgstr "" #. TRANS: as an anonymous user. %s is the user nickname. #, php-format msgid "%s is not listening to anyone." -msgstr "" +msgstr "%s не чытае нікога." #. TRANS: Atom feed title. %s is a profile nickname. #, php-format msgid "Subscription feed for %s (Atom)" -msgstr "" +msgstr "Стужка падпісак %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. msgctxt "LABEL" msgid "IM" -msgstr "" +msgstr "IM" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" -msgstr "" +msgstr "СМС" #. TRANS: Title for all but the first page of notices with tags. #. TRANS: %1$s is the tag, %2$d is the page number. #, php-format msgid "Notices tagged with %1$s, page %2$d" -msgstr "" +msgstr "Запісы з тэгам %1$s, старонка %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "" +msgstr "Стужка запісаў для тэга %s (стужка актыўнасьці JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" +msgstr "Стужка запісаў для тэга %s (RSS 1.0)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" +msgstr "Стужка запісаў для тэга %s (RSS 2.0)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "" +msgstr "Стужка запісаў для тэга %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. msgid "You cannot tag this user." -msgstr "" +msgstr "Вы ня можаце пазначыць гэтага карыстальніка." #. TRANS: Title for list form when not on a profile page. msgid "List a profile" -msgstr "" +msgstr "Сьпіс профілю" #. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. #, php-format msgctxt "ADDTOLIST" msgid "List %s" -msgstr "" +msgstr "Сьпіс %s" #. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" -msgstr "" +msgstr "Памылка" #. TRANS: Header in list form. msgid "User profile" -msgstr "" +msgstr "Профіль карыстальніка" #. TRANS: Fieldset legend for list form. msgid "List user" -msgstr "" +msgstr "Карыстальнік са сьпісу" #. TRANS: Field label on list form. msgctxt "LABEL" msgid "Lists" -msgstr "" +msgstr "Сьпісы" #. TRANS: Field title on list form. msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" +"Сьпісы для гэтага карыстальніка (літары, лічбы, -, ., і _), падзеленыя " +"коскай ці прагалам." #. TRANS: Title for personal tag cloud section. msgctxt "TITLE" msgid "Tags" -msgstr "" +msgstr "Тэгі" #. TRANS: Success message if lists are saved. msgid "Lists saved." -msgstr "" +msgstr "Сьпісы захаваныя." #. TRANS: Page notice. msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" +"Выкарыстоўвайце гэтую форму каб дадаваць Вашых падпісчыкаў ці падпіскі ў " +"сьпісы." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." -msgstr "" +msgstr "Няма такога тэгу." #. TRANS: Client error displayed when trying to unblock a non-blocked user. msgid "You haven't blocked that user." -msgstr "" +msgstr "Вы не заблякавалі гэтага карыстальніка." #. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." -msgstr "" +msgstr "Карыстальнік не ў пясочніцы." #. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." -msgstr "" +msgstr "Карыстальнік не заглушаны." #. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" -msgstr "" +msgstr "Адпісаны" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "" +msgstr "%1$s адпісаўся ад сьпісу %2$s карыстальніка %3$s" #. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" -msgstr "" +msgstr "Налады URL-адрасоў" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." -msgstr "" +msgstr "Кіраваньне рознымі іншымі наладамі." #. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a #. TRANS: user's profile settings. This message has one space at the beginning. Use your #. TRANS: language's word separator here if it has one (most likely a single space). msgid " (free service)" -msgstr "" +msgstr " (вольны сэрвіс)" #. TRANS: Default value for URL shortening settings. msgid "[none]" -msgstr "" +msgstr "[няма]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[унутраны]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" -msgstr "" +msgstr "Скарачэньне URL-адрасоў з дапамогай" #. TRANS: Tooltip for for dropdown with URL shortener services. msgid "Automatic shortening service to use." -msgstr "" +msgstr "Выкарыстоўваць аўтаматычную паслугу скарачэньня." #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "URL-адрасы даўжэй за" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." -msgstr "" +msgstr "URL-адрасы даўжэй за гэта будуць скарочаныя, 0 — скарачаць заўсёды." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "Тэкст даўжэй за" #. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"URL-адрасы ў запісах даўжэй за гэта будуць скарочаныя, 0 — скарачаць заўсёды." #. TRANS: Form validation error for form "Other settings" in user profile. msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" +"Сэрвіс скарачэньне URL-адрасоў занадта доўгі (максымальна 50 сымбаляў)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. msgid "Invalid number for maximum URL length." -msgstr "" +msgstr "Няслушны лік максымальнай даўжыні URL-адрасу." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. msgid "Invalid number for maximum notice length." -msgstr "" +msgstr "Няслушны лік максымальнай даўжыні запісу." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." -msgstr "" +msgstr "Памылка захаваньня наладаў сэрвісу скарачэньня URL-адрасоў." #. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" -msgstr "" +msgstr "Карыстальнік" #. TRANS: Instruction for user admin panel. msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Налады карыстальніка для гэтага сайта StatusNet" #. TRANS: Form validation error in user admin panel when a non-numeric character limit was set. msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Няслушнае абмежаваньне біяграфіі. Павінен быць лік." #. TRANS: Form validation error in user admin panel when welcome text is too long. msgid "Invalid welcome text. Maximum length is 255 characters." -msgstr "" +msgstr "Няслушны тэкст вітаньня. Максымальная даўжыня — 255 сымбаляў." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index a2445d5099..95eb7488ca 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 077abe8fa5..8703afbfcd 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -4421,7 +4421,7 @@ msgstr "" #. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" -msgstr "Luget oc'h dija !" +msgstr "Kevreet oc'h c'hoazh !" #. TRANS: Client error displayed when password recovery code is not correct. msgid "No such recovery code." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index ac13cb5d2d..f46d279ba1 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,18 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 00e1b8ade3..debb167590 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,19 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index c17f48e4ef..3bf7088dd4 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -5,6 +5,7 @@ # Author: Bavatar # Author: Brion # Author: ChrisiPK +# Author: Fujnky # Author: George Animal # Author: Giftpflanze # Author: Gta74 @@ -31,18 +32,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -3511,10 +3512,10 @@ msgid "Only stream mode (no conversations) in timelines" msgstr "" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Konversationsseite als hierarchischen Baum anzeigen" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Spitznamen (nicht die vollständigen Namen) in Zeitleisten anzeigen" #. TRANS: Button text to save a list. msgid "Save" @@ -4288,12 +4289,12 @@ msgstr "Ungültiges Tag: „%s“." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Autosubscribe konnte nicht aktiviert werden." +msgstr "" +"Benutzer konnte nicht für autosubscribe oder subscribe_policy aktualisiert " +"werden." #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#, fuzzy msgid "Could not save location prefs." msgstr "Konnte Positions-Einstellungen nicht speichern." @@ -4313,9 +4314,8 @@ msgid "Beyond the page limit (%s)." msgstr "Jenseits des Seitenlimits (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Konnte öffentlichen Stream nicht abrufen." +msgstr "Konnte öffentliche Zeitleiste nicht abrufen." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4329,24 +4329,20 @@ msgid "Public timeline" msgstr "Öffentliche Zeitleiste" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Feed des öffentlichen Streams (Atom)" +msgstr "Feed der öffentlichen Zeitleiste (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Feed des öffentlichen Streams (RSS 1.0)" +msgstr "Feed der öffentlichen Zeitleiste (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Feed des öffentlichen Streams (RSS 2.0)" +msgstr "Feed der öffentlichen Zeitleiste (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Feed des öffentlichen Streams (Atom)" +msgstr "Feed der öffentlichen Zeitleiste (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4397,9 +4393,9 @@ msgstr "" "status.net/)." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "%s Nachrichten von allen!" +msgstr "%s Nachrichten von allen." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4559,7 +4555,6 @@ msgid "New password successfully saved. You are now logged in." msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." msgstr "Kein ID-Argument." @@ -4604,13 +4599,12 @@ msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." #. 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 "" "Hier kannst du einen neuen Zugang einrichten. Anschließend kannst du " -"Nachrichten und Links mit deinen Freunden und Kollegen teilen. " +"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. msgctxt "PASSWORD" @@ -4623,11 +4617,10 @@ msgid "Email" msgstr "E-Mail" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." msgstr "" -"Wird nur für Updates, wichtige Mitteilungen und zur " -"Passwortwiederherstellung verwendet" +"Wird nur für Updates, Bekanntmachungen und die Passwortwiederherstellung " +"verwendet." #. TRANS: Field title on account registration page. msgid "Longer name, preferably your \"real\" name." @@ -4715,9 +4708,11 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs while delisting a user. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "There was an unexpected error while delisting %s." -msgstr "Ein unerwarteter Fehler ist aufgetreten während der Auflistung von %s." +msgstr "" +"Bei der Entfernung von %s von der Liste ist ein unerwarteter Fehler ist " +"aufgetreten." #. TRANS: Client error displayed when an unknown error occurs while listing a user. #. TRANS: %s is a profile URL. @@ -4730,9 +4725,8 @@ msgstr "" "antwortet vielleicht nicht richtig. Bitte später noch einmal versuchen." #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Lizenz" +msgstr "Nicht gelistet" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4769,9 +4763,9 @@ msgstr "Antworten an %1$s, Seite %2$d" #. 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 "Feed der Nachrichten von %s (Atom)" +msgstr "Feed der Nachrichten von %s (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4823,19 +4817,17 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." msgstr "Antworten an %1$s auf %2$s!" #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen." +msgstr "Nur angemeldete Benutzer können ihr Konto wiederherstellen." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Du hast noch keine Programme registriert" +msgstr "Du darfst dein Benutzerkonto nicht wiederherstellen." #. 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. @@ -4880,9 +4872,8 @@ msgstr "Systemfehler beim Hochladen der Datei." #. TRANS: Client exception thrown when a feed is not an Atom feed. #. TRANS: Client exception thrown when an imported feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "Kein Mitglied" +msgstr "Kein Atom-Feed." #. TRANS: Success message when a feed has been restored. msgid "" @@ -4897,7 +4888,6 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Feed wird wiederhergestellt. Dies kann einige Minuten dauern." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." @@ -4914,7 +4904,6 @@ msgid "You cannot revoke user roles on this site." msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "Benutzer verfügt nicht über diese Rolle." @@ -4934,15 +4923,15 @@ msgstr "Benutzer ist schon blockiert." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "Ungültiger Personen-Tag: „%s“." +msgstr "Keine gültige Liste: %s ." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" +msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben, Seite %2$d" #. TRANS: Title for the sessions administration panel. msgctxt "TITLE" @@ -4965,7 +4954,6 @@ msgstr "Sitzung verwalten" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." msgstr "Sitzungsverwaltung selber übernehmen." @@ -4975,14 +4963,12 @@ msgid "Session debugging" msgstr "Sitzung untersuchen" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." -msgstr "Fehleruntersuchung für Sitzungen aktivieren" +msgstr "Fehleruntersuchung für Sitzungen aktivieren." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Zugangs-Einstellungen speichern" +msgstr "Sitzungseinstellungen speichern" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4995,7 +4981,7 @@ msgstr "Anwendungsprofil" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" msgstr[0] "Erstellt von %1$s - %2$s Standard Zugang - %3$d Benutzer" @@ -5040,13 +5026,12 @@ msgid "Authorize URL" msgstr "Autorisationadresse" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Hinweis: Wir unterstützen HMAC-SHA1-Signaturen. Wir unterstützen keine " -"Klartext-Signaturen." +"Hinweis: HMAC-SHA1-Signaturen werden unterstützt. Die Klartext-" +"Signaturmethode wird nicht unterstützt." #. 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?" @@ -5063,9 +5048,9 @@ msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Feed der Freunde von %s (Atom)" +msgstr "Feed der Favoriten von %s (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5130,9 +5115,9 @@ msgid "%1$s group, page %2$d" msgstr "%1$s Gruppe, Seite %d" #. 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 "Nachrichtenfeed der Gruppe %s (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5175,7 +5160,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5185,7 +5170,7 @@ msgstr "" "**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" "(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " "Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " -"Nachrichten über ihr Leben und Interessen. " +"Nachrichten über ihr Leben und Interessen." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5217,21 +5202,21 @@ msgstr "Nachricht gelöscht." #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" +msgstr "Private Zeitleiste für die Liste %1$s von dir, Seite %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" +msgstr "Zeitleiste für die Liste %1$s von dir, Seite %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" +msgstr "Zeitleiste für die liste %1$s von %2$s, Seite %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. @@ -5247,25 +5232,25 @@ msgstr "Zeitleiste für Liste %s von dir" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Antworten an %1$s auf %2$s!" +msgstr "Zeitleiste für die Liste %1$s von %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Feed der Freunde von %s (Atom)" +msgstr "Feed für die Liste %1$s von %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Dies ist die Zeitleiste von %s und Freunden, aber bisher hat niemand etwas " -"gepostet." +"Dies ist die Zeitleiste für die Liste %1$s von %2$s, aber bisher hat niemand " +"etwas gepostet." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." @@ -5273,19 +5258,18 @@ msgstr "Versuche, mehr Leute zu taggen." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" "Warum [registrierst du nicht einen Account](%%%%action.register%%%%) und " -"bist der erste der eine Nachricht abschickt!" +"fängst an, dieser Zeitleiste zu folgen!" #. 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 "Lizenz" +msgstr "Gelistet" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5310,21 +5294,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten" +msgstr "Von %1$s mit %2$s getaggte Nachrichten" #. 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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" +msgstr "Von %1$s mit %2$s getaggte Nachrichten, Seite %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" +msgstr "Nachrichten von %1$s, Seite %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5334,9 +5318,9 @@ msgstr "Feed aller von „%1$s“ mit „%2$s“ getaggten Nachrichten (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 "Feed der Nachrichten von %s (Atom)" +msgstr "Feed der Nachrichten von %s (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5477,36 +5461,32 @@ msgid "Site name" msgstr "Seitenname" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Der Name deiner Seite, sowas wie „DeinUnternehmen-Mikroblog“" +msgstr "Der Name deiner Seite, so etwas wie „DeinUnternehmen-Mikroblog“." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Erstellt von" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." msgstr "" -"Text der für den Credit-Link im Fußbereich auf jeder Seite benutzt wird" +"Text der für den Credit-Link im Fußbereich auf jeder Seite benutzt wird." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Erstellt von Adresse" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." msgstr "" -"Adresse, die für den Credit-Link im Fußbereich auf jeder Seite benutzt wird" +"Adresse, die für den Credit-Link im Fußbereich auf jeder Seite benutzt wird." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "E-Mail" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." msgstr "Kontakt-E-Mail-Adresse für deine Website." @@ -5738,10 +5718,9 @@ msgid "No code entered." msgstr "Kein Code eingegeben" #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" -msgstr "Snapshots" +msgstr "Schnappschüsse" #. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" @@ -5760,10 +5739,9 @@ msgid "Invalid snapshot report URL." msgstr "Ungültige Snapshot-Berichts-URL." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" -msgstr "Snapshots" +msgstr "Schnappschüsse" #. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" @@ -5778,32 +5756,28 @@ msgid "Data snapshots" msgstr "Daten-Snapshot" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Wann sollen Statistiken zum status.net-Server geschickt werden" +msgstr "Wann sollen Statistiken zum Status.net-Server geschickt werden." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequenz" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Snapshots werden alle N Webseitenbesuche gesendet" +msgstr "Schnappschüsse werden einmal bei jeden N Webseitenbesuchen gesendet." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL melden" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "An diese Adresse werden Snapshots gesendet" +msgstr "Schnappschüsse werden an diese URL gesendet." #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Snapshot-Einstellungen speichern" +msgstr "Schnappschuss-Einstellungen speichern." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index a37b6dbb5a..7465577e92 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,19 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index c69980f8a1..bf34564e4d 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,18 +17,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index a917d8f062..5e57ef6bc7 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -5,6 +5,7 @@ # Author: Barucomx # Author: Brion # Author: Crazymadlover +# Author: Erchache2000 # Author: Fitoschido # Author: Johnarupire # Author: Locos epraix @@ -24,18 +25,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -111,7 +112,6 @@ msgid "Closed" msgstr "Cerrado" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." msgstr "Guardar la configuración de acceso" @@ -249,20 +249,22 @@ msgstr "No existe ese usuario." #. TRANS: Title of a user's own start page. #, fuzzy msgid "Home timeline" -msgstr "línea temporal de %s" +msgstr "Línea temporal de %s" #. 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 "línea temporal de %s" +msgstr "" +"\n" +"Línea temporal 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 "Feed de los amigos de %s (Atom)" +msgstr "Canal de los amigos de %s (Atom)" #. TRANS: %s is user nickname. #, php-format @@ -325,7 +327,6 @@ 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 "Invitaciones" @@ -452,17 +453,15 @@ msgid "Unblock user failed." msgstr "Falló desbloquear usuario." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Conversación" +msgstr "Sin ID de Conversación" #. 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 "Conversación" +msgstr "No hay conversaciones con ID %d" #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Conversación" @@ -1074,9 +1073,9 @@ msgstr "Actualizaciones de %1$s marcadas como favoritas por %2$s / %3$s." #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for list - %s" -msgstr "No se pudo crear el token de acceso para %s" +msgstr "No se pudo crear el canal para la lista - %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. @@ -1825,7 +1824,6 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Introduzca «%s» para confirmar que desea eliminar su cuenta." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." msgstr "Eliminar permanentemente su cuenta" @@ -1868,7 +1866,6 @@ msgid "Do not delete this application." msgstr "No elimine esta aplicación." #. TRANS: Submit button title for 'Yes' when deleting an application. -#, fuzzy msgid "Delete this application." msgstr "Borrar esta aplicación" @@ -1908,9 +1905,8 @@ msgstr "" "públicos al grupo todavía aparecerán en las líneas de tiempo individuales." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "No eliminar este grupo" +msgstr "No eliminar este grupo." #. TRANS: Submit button title for 'Yes' when deleting a group. msgid "Delete this group." @@ -1967,14 +1963,12 @@ msgstr "" "todos los datos sobre el usuario, sin dejar una copia de seguridad." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "No eliminar este usuario" +msgstr "No eliminar este usuario." #. TRANS: Submit button title for 'Yes' when deleting a user. -#, fuzzy msgid "Delete this user." -msgstr "Borrar este usuario" +msgstr "Borrar este usuario." #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" @@ -1986,21 +1980,20 @@ msgstr "Agregar a favoritos" #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. #. TRANS: %s is the non-existing document. -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"." msgstr "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" +msgstr "Inicio" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documentación" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" @@ -2012,47 +2005,40 @@ 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" +msgstr "Sobre este sitio" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "Preguntas Frecuentes" msgid "Frequently asked questions" -msgstr "" +msgstr "Preguntas Frecuentes" #. 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" +msgstr "Contacto" -#, fuzzy msgid "Contact info" -msgstr "Ponerse en contacto" +msgstr "Información de contacto" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etiquetas" msgid "Using tags" -msgstr "" +msgstr "Usando etiquetes" #. 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" @@ -2063,7 +2049,7 @@ msgstr "Grupos de usuario" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -2093,7 +2079,6 @@ msgstr "Se requiere un nombre" #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. #. TRANS: Validation error shown when providing too long a name in the "New application" form. -#, fuzzy msgid "Name is too long (maximum 255 characters)." msgstr "El nombre es muy largo (máx. 255 carac.)" @@ -2174,9 +2159,9 @@ msgstr "Se guardó Opciones." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Borrar este usuario" +msgstr "Eliminar %s de la lista" #. TRANS: Title for edit list page. #. TRANS: %s is a list. @@ -2215,23 +2200,26 @@ msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" +"Borrando esta etiqueta eliminará permanentemente todas las suscripciones y " +"miembros del mismo. ¿Desea continuar?" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Tamaño inválido." +msgstr "Etiqueta inválida." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Ya has repetido este mensaje." +msgstr "Ya has creado la etiqueta %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" +"Definiendo como pública una etiqueta privada va a eliminar permanentemente " +"todas sus suscripciones existente. ¿Desea continuar?" #. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." @@ -2406,9 +2394,8 @@ msgid "That is the wrong email address." msgstr "Esa es la dirección de correo electrónico incorrecta." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#, fuzzy msgid "Could not delete email confirmation." -msgstr "No se pudo eliminar el correo electrónico de confirmación." +msgstr "No puede eliminar el correo electrónico de confimación." #. TRANS: Message given after successfully canceling e-mail address confirmation. msgid "Email confirmation cancelled." @@ -2430,9 +2417,8 @@ msgstr "No hay dirección de correo entrante." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. -#, fuzzy msgid "Could not update user record." -msgstr "No se pudo actualizar información de usuario." +msgstr "No puede actualizar los datos de usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. @@ -2449,9 +2435,8 @@ msgid "This notice is already a favorite!" msgstr "¡Este mensaje ya está en favoritos!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." -msgstr "Sacar favorito" +msgstr "Eliminar favorito." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. @@ -2522,9 +2507,9 @@ msgid "Featured users, page %d" msgstr "Usuarios que figuran, página %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "Una selección de fantásticos usuarios en %s" +msgstr "Una selección de usuarios recomendados en %s." #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2613,7 +2598,6 @@ msgstr "" "sucesivo." #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." msgstr "No bloquear este usuario de este grupo" @@ -3054,27 +3038,28 @@ msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Debe especificar el propietario de los derechos de autor de ese contenido " +"cuando usa una licencia de todos los derechos 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 "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." -msgstr "" +msgstr "Url de licencia inválida." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "Invalid license image URL." -msgstr "" +msgstr "Url de licencia inválida." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "La URL de licencia debe estar en blanco o ser válida." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "License image must be blank or valid URL." -msgstr "" +msgstr "La licencia de imagen debe estar en blanco o ser válida." #. TRANS: Form legend in the license admin panel. msgid "License selection" @@ -3098,9 +3083,8 @@ msgid "Type" msgstr "Tipo" #. TRANS: Dropdown field instructions in the license admin panel. -#, fuzzy msgid "Select a license." -msgstr "Seleccione un operador móvil" +msgstr "Seleccione una licencia." #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3112,36 +3096,35 @@ msgstr "Propietario" #. TRANS: Field title in the license admin panel. msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nombre del propietario del contenido del sitio (si procede)." #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "Título de licencia" #. TRANS: Field title in the license admin panel. msgid "The title of the license." -msgstr "" +msgstr "El título de la licencia." #. TRANS: Field label in the license admin panel. msgid "License URL" -msgstr "" +msgstr "URL de licencia" #. TRANS: Field title in the license admin panel. msgid "URL for more information about the license." -msgstr "" +msgstr "URL para obtener más información sobre la licencia." #. TRANS: Field label in the license admin panel. msgid "License Image URL" -msgstr "" +msgstr "URL de imagen de licencia" #. TRANS: Field title in the license admin panel. msgid "URL for an image to display with the license." -msgstr "" +msgstr "Dirección URL de una imagen para mostrar con la licencia." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Guardar la configuración del sitio" +msgstr "Guardar configuración de licencia." #. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." @@ -3161,9 +3144,8 @@ msgid "Login to site" msgstr "Ingresar a sitio" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" -msgstr "Nombre de usuario o dirección de correo electrónico" +msgstr "Nombre de usuario o correo electrónico" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. @@ -3237,7 +3219,6 @@ msgid "No current status." msgstr "No existe estado actual." #. TRANS: This is the title of the form for adding a new application. -#, fuzzy msgid "New application" msgstr "Nueva aplicación" @@ -3258,18 +3239,16 @@ msgid "Could not create application." msgstr "No se pudo crear la aplicación." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Tamaño inválido." +msgstr "Imagen no válida." #. TRANS: Title for form to create a group. msgid "New group" msgstr "Grupo nuevo " #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "No eres miembro de este grupo." +msgstr "No estas autorizado para crear grupos en este sitio." #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3282,9 +3261,8 @@ msgstr "Nuevo Mensaje " #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." -msgstr "No puedes enviar mensaje a este usuario." +msgstr "No puedes enviar un mensaje a este usuario." #. TRANS: Form validator error displayed trying to send a direct message without content. #. TRANS: Client error displayed trying to send a notice without content. @@ -3316,7 +3294,6 @@ msgstr "Error de Ajax" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" msgstr "Nuevo mensaje" @@ -3373,13 +3350,11 @@ msgstr "Actualizaciones con \"%s\"" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "" -"¡Actualizaciones que contienen el término de búsqueda \"%1$s\" en %2$s!" +msgstr "Actualiza el término de búsqueda coincidente \" %1$s \" en %2$s ." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. -#, fuzzy msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." @@ -3426,7 +3401,7 @@ msgstr "No eres un usuario de esa aplicación." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for application: %s." msgstr "No se puede revocar el acceso para la aplicación: %s." @@ -3437,6 +3412,8 @@ msgid "" "You have successfully revoked access for %1$s and the access token starting " "with %2$s." msgstr "" +"Se ha revocado acceso con éxito para %1$s y el token de acceso que " +"comienza por %2$s ." #. TRANS: Empty list message when no applications have been authorised yet. msgid "You have not authorized any applications to use your account." @@ -3450,18 +3427,20 @@ msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +"¿Eres un desarrollador? [Registrar una aplicación de cliente de OAuth]( %s ) " +"para usar con esta instancia de StatusNet." #. 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 "Método de API no encontrado." +msgstr "\" %s \" no se ha encontrado." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "Método de API no encontrado." +msgstr "Aviso %s no encontrado." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3477,15 +3456,15 @@ msgstr "estado de %1$s en %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "No se encuentra usuario receptor." +msgstr "Archivo adjunto %s no encontrado." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr "\" %s \" no se admite para solicitudes oembed." #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #, php-format @@ -3503,13 +3482,12 @@ msgid "Not a supported data format." msgstr "No es un formato de datos compatible." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Configuración de mensajería instantánea" +msgstr "Configuración de interfaz de usuario de vieja escuela oldskool" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Si te gusta \"el sistema viejo\", se puede establecer aquí." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3517,13 +3495,13 @@ msgid "Settings saved." msgstr "Se guardó configuración." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Flujo sólo de modo (no conversaciones) en líneas de tiempo" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Mostrar página de conversación como árboles jerárquicos" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Mostrar apodos (no apellidos) en líneas de tiempo" #. TRANS: Button text to save a list. msgid "Save" @@ -3629,9 +3607,8 @@ msgstr "La contraseña debe tener 6 o más 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 "Las contraseñas no coinciden" +msgstr "Las contraseñas no coinciden." #. TRANS: Form validation error on page where to change password. msgid "Incorrect old password." @@ -3658,6 +3635,7 @@ msgstr "Rutas" #. TRANS: Form instructions for Path admin panel. msgid "Path and server settings for this StatusNet site" msgstr "" +"Configuración de ruta de acceso y servidor para este sitio de StatusNet" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the directory that could not be read from. @@ -3699,26 +3677,22 @@ msgid "Path" msgstr "Ruta" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Site path." -msgstr "Ruta del sitio" +msgstr "Ruta del sitio." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Locale directory" -msgstr "Directorio de temas" +msgstr "Directorio de configuración regional" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Directory path to locales." -msgstr "Ruta del directorio de las configuraciones locales" +msgstr "Ruta del directorio a configuraciones regionales." #. TRANS: Checkbox label in Paths admin panel. msgid "Fancy URLs" msgstr "URL agradables" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" msgstr "¿Usar URL amigables (más legibles y memorizables)?" @@ -3728,13 +3702,12 @@ msgid "Theme" msgstr "Tema" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for themes." -msgstr "Tema para el sitio." +msgstr "Servidor de temas." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." -msgstr "" +msgstr "Ruta temas web." #. TRANS: Field label in Paths admin panel. msgid "SSL server" @@ -3742,26 +3715,23 @@ msgstr "Servidor SSL" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL server for themes (default: SSL server)." -msgstr "" +msgstr "Servidor SSL para temas (predeterminado: servidor SSL)." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "SSL path" -msgstr "Ruta del sitio" +msgstr "Ruta SSL" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "" +msgstr "Ruta de acceso SSL a temas (predeterminado: /theme/)." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Directory" -msgstr "Directorio de temas" +msgstr "Directorio" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where themes are located." -msgstr "Ruta del directorio de las configuraciones locales" +msgstr "Directorio donde se encuentran temas." #. TRANS: Fieldset legend in Paths admin panel. msgid "Avatars" @@ -3772,54 +3742,48 @@ msgid "Avatar server" msgstr "Servidor de la imagen" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for avatars." -msgstr "Tema para el sitio." +msgstr "Servidor de avatares." #. TRANS: Field label in Paths admin panel. msgid "Avatar path" msgstr "Ruta de la imagen" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to avatars." -msgstr "Error al actualizar la imagen." +msgstr "Ruta Web avatares." #. TRANS: Field label in Paths admin panel. msgid "Avatar directory" msgstr "Directorio de la imagen" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where avatars are located." -msgstr "Ruta del directorio de las configuraciones locales" +msgstr "Directorio donde se encuentran avatares." #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Adjuntos" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments." -msgstr "Tema para el sitio." +msgstr "Servidor de archivos adjuntos." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments." msgstr "Ruta de acceso a los adjuntos" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments on SSL pages." -msgstr "Tema para el sitio." +msgstr "Servidor de archivos adjuntos en las páginas SSL." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments on SSL pages." -msgstr "" +msgstr "Ruta Web archivos adjuntos en las páginas SSL." #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where attachments are located." -msgstr "Ruta del directorio de las configuraciones locales" +msgstr "Directorio donde se encuentran los archivos adjuntos." #. TRANS: Fieldset legend in Paths admin panel. msgctxt "LEGEND" @@ -3852,9 +3816,8 @@ msgid "Server to direct SSL requests to." msgstr "Servidor hacia el cual dirigir las solicitudes SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Guardar la configuración del sitio" +msgstr "Guardar configuración de ruta." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3872,67 +3835,63 @@ msgstr "Buscador de gente" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "Nube de etiquetas pública" +msgstr "Lista pública %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "Respuestas a %1$s, página %2$d" +msgstr "Lista pública de %1$s , página%2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " -"[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " -"herramienta de software libre [StatusNet](http://status.net/). Sus miembros " -"comparten mensajes cortos acerca de su vida e intereses. " +"Las listas son similares a cómo ordenar personas en % %site.name% %, un " +"[micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) servicio " +"basado en el Software libre [herramienta de StatusNet](http://status.net/). " +"Puede entonces fácilmente realizar un seguimiento de lo que están haciendo " +"por suscribirse a la línea de tiempo de la lista." #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." msgstr "No existe tal etiqueta." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Respuestas a %1$s en %2$s!" +msgstr "Personas enumeradas en %1$s por %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Respuestas a %1$s, página %2$d" +msgstr "Personas enumeradas en el %1$s por %2$s, página %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#, fuzzy msgid "Creator" -msgstr "Creado" +msgstr "Creador" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Editar grupo %s" +msgstr "Listas privadas suyas" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Nube de etiquetas pública" +msgstr "Listas públicas suyas" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Editar grupo %s" +msgstr "Sus listas" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index cf1997d45b..2471f4ee0e 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:49+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:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 35a9b82b03..abae8286a9 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-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,10 +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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index f027179678..aef27a09a5 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, fuzzy, php-format diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 917f530741..99b0ac6dcf 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -5,6 +5,7 @@ # Author: Brion # Author: Brunoperel # Author: Crochet.david +# Author: DavidL # Author: Hashar # Author: IAlex # Author: Iketsi @@ -30,18 +31,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -457,17 +458,15 @@ msgid "Unblock user failed." msgstr "Le déblocage de l’utilisateur a échoué." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "aucun ID de conversation" +msgstr "Pas d'identifiant de conversation." #. 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 "Aucune conversation avec l’ID %d" +msgstr "Aucune conversation avec l’ID %d." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Conversation" @@ -1548,9 +1547,8 @@ msgid "No file uploaded." msgstr "Aucun fichier n’a été téléversé." #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" +msgstr "Sélectionner une zone carrée de l’image pour être votre avatar." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1598,10 +1596,9 @@ msgstr "" "ne sont pas sauvegardés." #. TRANS: Submit button to backup an account on the backup account page. -#, fuzzy msgctxt "BUTTON" msgid "Backup" -msgstr "Arrière plan" +msgstr "Sauvegarde" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." @@ -1852,7 +1849,6 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Entrez « %s » pour confirmer que vous souhaitez supprimer votre compte." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." msgstr "Supprimer définitivement votre compte" @@ -2010,39 +2006,36 @@ msgstr "Ajouter aux favoris" #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. #. TRANS: %s is the non-existing document. -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"." -msgstr "Document « %s » non trouvé." +msgstr "Aucun document de ce type \" %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 "Site personnel" +msgstr "Accueil" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Documentation" #. 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." +msgstr "Pour commencer" #. 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" +msgstr "À propos de ce site" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2050,7 +2043,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Foire aux questions" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2062,7 +2055,6 @@ msgstr "Contact" msgid "Contact info" msgstr "Contact" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Balises" @@ -2073,7 +2065,6 @@ 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" @@ -2084,7 +2075,7 @@ msgstr "Groupes d’utilisateurs" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -2215,14 +2206,12 @@ msgid "Not a local user." msgstr "Ceci n’est pas un utilisateur local." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Vous devez être administrateur pour modifier le groupe." +msgstr "Vous devez être le créateur de la balise pour le modifier." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Remplissez ce formulaire pour modifier les options du groupe." +msgstr "Utilisez ce formulaire pour modifier la liste." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. #, fuzzy @@ -2241,9 +2230,9 @@ msgstr "Balise non valide." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Vous avez déjà repris cet avis." +msgstr "Vous avez déjà une balise nommée %s ." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 1f1d0b8c00..d204cea7da 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 1623b13afd..3fc48ff5f8 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:56+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -33,6 +33,10 @@ msgid "" "contact them at %2$s to make sure. Otherwise, wait a few minutes and try " "again." msgstr "" +"A base de datos de %1$s non responde correctamente, de modo que o sitio non " +"traballará adecuadamente. Probablemente os administradores do sitio xa " +"saiban do problema, pero pode poñerse en contacto con eles en %2$s para " +"asegurarse. Senón, agarde uns minutos e inténteo de novo." #. TRANS: Error message. msgid "An error occurred." @@ -43,6 +47,8 @@ msgstr "Houbo un erro." msgid "" "No configuration file found. Try running the installation program first." msgstr "" +"Non se atopou o ficheiro de configuración. Inténteo executando o programa de " +"instalación primeiro." #. TRANS: Error message displayed when trying to access a non-existing page. msgid "Unknown page" @@ -154,7 +160,7 @@ msgstr "Non existe tal lista." #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while listing %s." -msgstr "" +msgstr "Houbo un erro inesperado ao engadir a %s á lista." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a profile URL. @@ -163,6 +169,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly. Please try retrying later." msgstr "" +"Houbo un problema ao engadir a %s á lista. Probablemente o servidor remoto " +"non estea respondendo correctamente. Inténteo de novo máis tarde." #. TRANS: Title after adding a user to a list. msgctxt "TITLE" @@ -173,7 +181,7 @@ msgstr "Listado" #. TRANS: Server error when page not found (404) #. TRANS: Server error when page not found (404). msgid "No such page." -msgstr "Esa páxina non existe." +msgstr "Non existe esa páxina." #. TRANS: Client error when user not found for an action. #. TRANS: Client error when user not found for an rss related action. @@ -225,22 +233,21 @@ msgid "No such user." msgstr "Non existe tal usuario." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Liña do tempo de %s" +msgstr "Liña do tempo inicial" #. 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 "Liña do tempo de %s" +msgstr "Liña do tempo inicial 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 "Fonte de novas dos amigos de %s (Atom)" +msgstr "Fonte de novas dos amigos de %s (fluxos de actividade JSON)" #. TRANS: %s is user nickname. #, php-format @@ -336,7 +343,7 @@ msgstr "Non se atopou o método da API." #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." -msgstr "Este método require un POST." +msgstr "Este método require un comando HTTP POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. msgid "" @@ -429,14 +436,13 @@ msgid "Unblock user failed." msgstr "Non se puido desbloquear o usuario." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Conversa" +msgstr "Sen identificador da conversa." #. 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 "Conversa" +msgstr "Non hai ningunha conversa do ID %d." #. TRANS: Title for conversion timeline. msgctxt "TITLE" @@ -604,7 +610,7 @@ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "A descrición é longa de máis (o máximo son %d caracteres)." +msgstr[0] "A descrición é longa de máis (o máximo é %d carácter)." msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." #. TRANS: Client error shown when providing too long a location during group creation. @@ -749,13 +755,12 @@ msgstr "O pseudónimo non pode coincidir co alcume." #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to perform an action related to a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy msgid "List not found." -msgstr "Non se atopou o método da API." +msgstr "Non se atopou a lista." #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." -msgstr "" +msgstr "Non pode actualizar as listas que non lle pertencen." #. TRANS: Client error displayed when an unknown error occurs updating a list. #. TRANS: Client error displayed when an unknown error occurs viewing list members. @@ -766,45 +771,39 @@ msgstr "Houbo un erro." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." -msgstr "" +msgstr "Non pode borrar as listas que non lle pertencen." #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." -msgstr "O usuario non pertence ao grupo." +msgstr "O usuario especificado non é membro desta lista." #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "Vostede non pertence a este grupo." +msgstr "Non ten os permisos necesarios para engadir membros a esta lista." #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "Falta o perfil de usuario." +msgstr "Cómpre especificar un membro." #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "Vostede non pertence a este grupo." +msgstr "Non ten os permisos necesarios para eliminar membros desta lista." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." -msgstr "" +msgstr "O usuario que intenta eliminar non pertence á lista." #. TRANS: Client error displayed when trying to create a list without a name. -#, fuzzy msgid "A list must have a name." -msgstr "O pseudónimo non pode coincidir co alcume." +msgstr "A lista debe ter un nome." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "O usuario especificado non é subscritor desta lista." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "Non está subscrito a ese perfil." +msgstr "Non está subscrito a esa lista." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -969,7 +968,7 @@ msgstr "Non pode borrar o estado doutro usuario." #. 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 "Non existe tal nota." +msgstr "Non existe esa nota." #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. @@ -1018,7 +1017,7 @@ msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. -#, fuzzy, php-format +#, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." msgstr[0] "Iso é longo de máis. A nota non pode exceder os %d caracteres." @@ -1154,7 +1153,7 @@ msgstr "" #. TRANS: Client error displayed when not using an Atom entry. msgid "Atom post must be an Atom entry." -msgstr "" +msgstr "A publicación do Atom debe ser unha entrada de Atom." #. TRANS: Client error displayed when not using the POST verb. Do not translate POST. msgid "Can only handle POST activities." @@ -1168,9 +1167,9 @@ msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#, fuzzy, php-format +#, php-format msgid "No content for notice %d." -msgstr "Buscar nos contidos das notas" +msgstr "A nota %d non ten ningún contido." #. TRANS: Client error displayed when using another format than AtomPub. #. TRANS: %s is the notice URI. @@ -1330,9 +1329,8 @@ msgid "Cannot add someone else's subscription." msgstr "Non se puido inserir unha subscrición nova." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. -#, fuzzy msgid "Can only handle favorite activities." -msgstr "Buscar nos contidos das notas" +msgstr "Só pode manexar actividades de favoritos." #. TRANS: Client exception thrown when trying favorite an object that is not a notice. #, fuzzy @@ -1366,9 +1364,8 @@ msgid "Cannot add someone else's membership." msgstr "Non se puido inserir unha subscrición nova." #. TRANS: Client error displayed when not using the join verb. -#, fuzzy msgid "Can only handle join activities." -msgstr "Buscar nos contidos das notas" +msgstr "Só pode manexar actividades de unión." #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. msgid "Unknown group." @@ -1408,9 +1405,9 @@ msgstr "Non existe ese perfil." #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. -#, fuzzy, php-format +#, php-format msgid "Profile %1$d not subscribed to profile %2$d." -msgstr "Non está subscrito a ese perfil." +msgstr "O perfil %1$d non está subscrito ao perfil %2$d." #. TRANS: Client exception thrown when trying to delete a subscription of another user. #, fuzzy @@ -1425,7 +1422,7 @@ msgstr "Persoas subscritas a %s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." -msgstr "" +msgstr "Só pode manexar actividades de seguimento." #. TRANS: Client exception thrown when subscribing to an object that is not a person. msgid "Can only follow people." @@ -1686,7 +1683,7 @@ msgstr "Á solicitude fáltalle o ID do perfil." #. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. #. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. msgid "No profile with that ID." -msgstr "Ningún perfil ten esa ID." +msgstr "Non hai ningún perfil con ese ID." #. TRANS: Title after unsubscribing from a group. msgctxt "TITLE" @@ -1728,9 +1725,8 @@ msgstr "Non se puido inserir unha subscrición nova." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. -#, fuzzy msgid "Could not delete address confirmation." -msgstr "Non se puido borrar a confirmación por mensaxería instantánea." +msgstr "Non se puido borrar a confirmación do enderezo." #. TRANS: Title for the contact address confirmation action. msgid "Confirm address" @@ -1968,9 +1964,8 @@ msgid "Do not delete this user." msgstr "Non borrar este usuario." #. TRANS: Submit button title for 'Yes' when deleting a user. -#, fuzzy msgid "Delete this user." -msgstr "Borrar o usuario" +msgstr "Borrar o usuario." #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" @@ -2021,7 +2016,7 @@ msgid "FAQ" msgstr "Preguntas máis frecuentes" msgid "Frequently asked questions" -msgstr "" +msgstr "Preguntas máis frecuentes" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2057,7 +2052,7 @@ msgid "API" msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "API conforme a REST" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2403,9 +2398,8 @@ msgid "That is the wrong email address." msgstr "Ese enderezo de correo electrónico é incorrecto." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#, fuzzy msgid "Could not delete email confirmation." -msgstr "Non se puido borrar a confirmación por correo electrónico." +msgstr "Non se puido borrar a confirmación do correo electrónico." #. TRANS: Message given after successfully canceling e-mail address confirmation. msgid "Email confirmation cancelled." @@ -2446,9 +2440,8 @@ msgid "This notice is already a favorite!" msgstr "A nota xa é unha das súas favoritas!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." -msgstr "Desmarcar como favorita" +msgstr "Desmarcar como favorita." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. @@ -2540,7 +2533,7 @@ msgstr "Non se cargou ningún dato adxunto." #. TRANS: Client error displayed when requesting a non-existent file. msgid "No such file." -msgstr "Non existe tal ficheiro." +msgstr "Non existe ese ficheiro." #. TRANS: Client error displayed when requesting a file without having read access to it. msgid "Cannot read file." @@ -2736,7 +2729,7 @@ msgstr "" #. TRANS: Link text on group page to create a new group. #. TRANS: Form legend for group edit form. msgid "Create a new group" -msgstr "Crear un grupo novo" +msgstr "Crear un novo grupo" #. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site. #, php-format @@ -3032,7 +3025,7 @@ msgid "You must be logged in to join a group." msgstr "Ten que identificarse para unirse a un grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s uniuse ao grupo %2$s" @@ -3187,8 +3180,8 @@ msgstr "Lembrádeme" #. TRANS: Checkbox title on account registration page. msgid "Automatically login in the future; not for shared computers!" msgstr "" -"Identificarse automaticamente no futuro. Non se aconsella en computadoras " -"compartidas!" +"Identificarse automaticamente no futuro. Non se aconsella en computadores " +"compartidos!" #. TRANS: Button text for log in on login page. msgctxt "BUTTON" @@ -3343,7 +3336,8 @@ msgid "" "by spaces; they must be 3 characters or more." msgstr "" "Buscar notas en %%site.name%% polo seu contido. Separe os termos de busca " -"con espazos en branco. Teñen que ter tres ou máis caracteres." +"con espazos en branco. Cada termo ten que estar formado por tres ou máis " +"caracteres." #. TRANS: Title of the page where users can search for notices. msgid "Text search" @@ -3462,9 +3456,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 "Non se atopou o método da API." +msgstr "Non se atopou \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. @@ -3810,13 +3804,12 @@ msgid "Web path to attachments." msgstr "Non hai ningún dato adxunto." #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments on SSL pages." -msgstr "Tema visual para o sitio." +msgstr "Servidor para os anexos nas páxinas SSL." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments on SSL pages." -msgstr "" +msgstr "Ruta de acceso cara aos anexos nas páxinas SSL." #. TRANS: Tooltip for field label in Paths admin panel. #, fuzzy @@ -3867,7 +3860,8 @@ msgid "" "Separate the terms by spaces; they must be 3 characters or more." msgstr "" "Buscar xente en %%site.name%% por nome, lugar ou intereses. Separe os termos " -"con espazos en branco. Teñen que ter tres ou máis caracteres." +"con espazos en branco. Cada termo ten que estar formado por tres ou máis " +"caracteres." #. TRANS: Title of a page where users can search for other users. msgid "People search" @@ -4167,11 +4161,10 @@ msgstr "Información do perfil" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " -"espazos, tiles ou eñes" +"espazos, tiles ou eñes." #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. @@ -4221,7 +4214,7 @@ msgstr "Biografía" #. TRANS: Field label on group edit form. #. TRANS: Dropdown option for searching in profiles. msgid "Location" -msgstr "Lugar" +msgstr "Localización" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. @@ -4273,9 +4266,8 @@ msgstr "" "bots)" #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Subscricións" +msgstr "Política de subscrición" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" @@ -4298,10 +4290,10 @@ msgstr "" #. TRANS: characters for the biography (%d). #. TRANS: Form validation error on registration page when providing too long a bio text. #. TRANS: %d is the maximum number of characters for bio; used for plural. -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "A biografía é longa de máis (o límite son %d caracteres)." +msgstr[0] "A biografía é longa de máis (o límite é %d carácter)." msgstr[1] "A biografía é longa de máis (o límite son %d caracteres)." #. TRANS: Validation error in form for profile settings. @@ -4320,9 +4312,9 @@ msgstr "A lingua é longa de máis (o límite é de 50 caracteres)." #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Etiqueta incorrecta: \"%s\"" +msgstr "Etiqueta incorrecta: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. @@ -4662,7 +4654,7 @@ msgstr "Correo electrónico" #. TRANS: Field title on account registration page. msgid "Used only for updates, announcements, and password recovery." msgstr "" -"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" +"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais." #. TRANS: Field title on account registration page. msgid "Longer name, preferably your \"real\" name." @@ -4872,9 +4864,8 @@ 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. -#, fuzzy msgid "No uploaded file." -msgstr "Cargar un ficheiro" +msgstr "Ningún ficheiro cargado." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." @@ -4933,16 +4924,14 @@ msgid "" msgstr "" #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "Cargar un ficheiro" +msgstr "Cargar o ficheiro" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." msgstr "Non pode revogar os roles dos usuarios neste sitio." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "O usuario non ten este rol." @@ -4962,15 +4951,15 @@ msgstr "O usuario xa está illado." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "A etiqueta de persoa non é correcta: %s." +msgstr "A lista non é correcta: %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" +msgstr "Usuarios etiquetados por si mesmos con %1$s, páxina %2$d" #. TRANS: Title for the sessions administration panel. msgctxt "TITLE" @@ -4993,9 +4982,8 @@ msgstr "Manexar as sesións" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Manexar ou non as sesións nós mesmos." +msgstr "Manexar as sesións nós mesmos." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -5003,14 +4991,12 @@ msgid "Session debugging" msgstr "Depuración da sesión" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Activar a saída de depuración para as sesións." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Gardar a configuración de acceso" +msgstr "Gardar a configuración da sesión" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -5238,9 +5224,8 @@ msgid "Message from %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "A mensaxería instantánea non está dispoñible." +msgstr "Non dispoñible." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5477,9 +5462,8 @@ msgid "Invalid logo URL." msgstr "URL do logo incorrecto." #. TRANS: Client error displayed when a SSL logo URL is invalid. -#, fuzzy msgid "Invalid SSL logo URL." -msgstr "URL do logo incorrecto." +msgstr "Enderezo URL do logo SSL incorrecto." #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. @@ -5596,9 +5580,8 @@ msgid "Site logo" msgstr "Logo do sitio" #. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy msgid "SSL logo" -msgstr "Logo do sitio" +msgstr "Logo SSL" #. TRANS: Button title for saving site settings. #, fuzzy @@ -6920,9 +6903,9 @@ msgstr "" "Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Non se coñece a lingua \"%s\"." +msgstr "Verbo descoñecido: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6947,9 +6930,8 @@ msgid "Remote profile is not a group!" msgstr "" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. -#, fuzzy msgid "User is already a member of this group." -msgstr "Xa forma parte dese grupo." +msgstr "O usuario xa forma parte dese grupo." #. 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. @@ -7114,7 +7096,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 "Non ten permiso para usar o API." +msgstr "Non ten permiso para usar a API." #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." @@ -7641,10 +7623,9 @@ msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Resultados da orde" +msgstr "Comandos:" #. TRANS: Help message for IM/SMS command "on". #, fuzzy @@ -7878,7 +7859,6 @@ msgid "Disfavor this notice" msgstr "Desmarcar esta nota como favorita" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Desmarcar como favorita" @@ -8280,9 +8260,9 @@ 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 xa segue a %2$s." +msgstr "%1$s xa o está seguindo a vostede en %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -8323,9 +8303,9 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Perfil" +msgstr "Perfil: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -8388,7 +8368,7 @@ msgstr "" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#, fuzzy, php-format +#, php-format msgid "You have been nudged by %s" msgstr "%s fíxolle un aceno" @@ -8455,9 +8435,9 @@ msgstr "" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) added your notice as a favorite" -msgstr "%s (@%s) marcou a súa nota como favorita" +msgstr "%1$s (@%2$s) marcou a súa nota como favorita" #. TRANS: Body for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created, @@ -8566,23 +8546,23 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s uniuse ao grupo %2$s." +msgstr "%1$s uniuse ao seu grupo %2$s en %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. #. 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 uniuse ao grupo %2$s." +msgstr "%1$s uniuse ao seu grupo %2$s en %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s uniuse ao grupo %2$s." +msgstr "%1$s quere unirse ao seu grupo %2$s en %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8805,9 +8785,8 @@ msgid "Attach" msgstr "Anexar" #. TRANS: Title for input field to attach a file to a notice. -#, fuzzy msgid "Attach a file." -msgstr "Anexar un ficheiro" +msgstr "Anexar un ficheiro." #. TRANS: Field label to add location to a notice. msgid "Share my location" @@ -8871,23 +8850,20 @@ msgid " " msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Responder a esta nota" +msgstr "Responder a esta nota." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Borrar esta nota" +msgstr "Borrar esta nota da liña do tempo." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Repetiuse a nota" +msgstr "Repetiuse a nota." #. TRANS: Field label for notice text. msgid "Update your status..." @@ -8898,15 +8874,13 @@ msgid "Nudge this user" msgstr "Facerlle un aceno a este usuario" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" msgstr "Facer un aceno" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." -msgstr "Facerlle un aceno a este usuario" +msgstr "Facerlle un aceno a este usuario." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. #, fuzzy @@ -8919,33 +8893,28 @@ msgid "List" msgstr "Lista" #. TRANS: Field title for list. -#, fuzzy msgid "Change the list (letters, numbers, -, ., and _ are allowed)." -msgstr "" -"Etiquetas para este usuario (letras, números, -, ., e _), separadas por " -"comas ou espazos en branco" +msgstr "Cambiar a lista (letras, números, -, . e _ están permitidos)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Describa o grupo ou o tema" +msgstr "Describa a lista ou o tema." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Describa o grupo ou o tema en %d caracteres" -msgstr[1] "Describa o grupo ou o tema en %d caracteres" +msgstr[0] "Describa a lista ou o tema en %d carácter." +msgstr[1] "Describa a lista ou o tema en %d caracteres." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Borrar o usuario" +msgstr "Borrar a lista." #. TRANS: Header in list edit form. msgid "Add or remove people" -msgstr "" +msgstr "Engadir ou eliminar xente" #. TRANS: Header in list edit form. msgctxt "HEADER" @@ -9041,16 +9010,15 @@ msgstr "Listas de %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s - %2$s" +msgstr "Listas de %s." #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "Notas populares" +msgstr "As súas listas" #. TRANS: Fieldset legend in lists widget. #, fuzzy @@ -9059,15 +9027,13 @@ msgid "Edit lists" msgstr "A etiqueta de persoa non é correcta: %s." #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "Etiquetas" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Notas populares" +msgstr "Listas populares" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. @@ -9553,9 +9519,8 @@ msgid "Subscribe" msgstr "Subscribirse" #. TRANS: Button title to subscribe to a user. -#, fuzzy msgid "Subscribe to this user." -msgstr "Subscribirse a este usuario" +msgstr "Subscribirse a este usuario." #. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" @@ -9661,10 +9626,9 @@ msgid "%1$s and %2$s" msgstr "%1$s e %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You like this." -msgstr "Notas populares" +msgstr "Gústalle 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. @@ -9685,7 +9649,6 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." msgstr "Xa repetiu esa nota." @@ -9783,7 +9746,6 @@ msgid "Unblock" msgstr "Desbloquear" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" msgstr "Deixar de illar" @@ -9884,9 +9846,8 @@ msgid "%s is not a valid color! Use 3 or 6 hex characters." msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." #. TRANS: Exception. -#, fuzzy msgid "Invalid XML." -msgstr "Tamaño non válido." +msgstr "XML inválido." #. TRANS: Exception. msgid "Invalid XML, missing XRD root." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 94d2cfe656..781c8baca3 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:57+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index ec7dde4af8..a6e4c1f175 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:58+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index eadbf5a098..441318e68b 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -3,8 +3,10 @@ # # Author: Bdamokos # Author: Dani +# Author: Dj # Author: Gerymate # Author: Glanthor Reviol +# Author: Tgr # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:00+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" @@ -45,9 +47,8 @@ msgid "" msgstr "" #. TRANS: Error message displayed when trying to access a non-existing page. -#, fuzzy msgid "Unknown page" -msgstr "Ismeretlen fájltípus" +msgstr "Ismeretlen oldal" #. TRANS: Error message displayed when trying to perform an undefined action. #. TRANS: Title for password recovery page when an unknown action has been specified. @@ -96,9 +97,8 @@ msgid "Closed" msgstr "Zárva" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Hozzáférések beállításainak mentése" +msgstr "Hozzáférések beállításainak mentése." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -1249,7 +1249,7 @@ msgstr "A csoportban lévő felhasználók listája." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Belső hiba: se cancel se abort nem érkezett." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription @@ -2247,7 +2247,7 @@ msgstr "Beállíthatod, milyen email-eket kapj a(z) %%site.name%% webhelyről." #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. msgid "Email address" -msgstr "Email-cím" +msgstr "E-mail cím" #. TRANS: Form note in e-mail settings form. msgid "Current confirmed email address." @@ -3252,9 +3252,8 @@ msgid "Could not create application." msgstr "Nem sikerült létrehozni az alkalmazást." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Érvénytelen méret." +msgstr "Érvénytelen kép." #. TRANS: Title for form to create a group. msgid "New group" @@ -3808,7 +3807,6 @@ msgid "Directory where attachments are located." msgstr "A nyelvi fájlok elérési útvonala" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "SSL" msgstr "SSL" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 788fc734b0..05d0a472cb 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index e54a9af61f..68d63111a1 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:02+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 736f9402d2..3c2efac940 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -7976,7 +7976,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s\n" +"%2$s" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 6949ff4917..8627263b10 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 097a4971c4..c130bd7a69 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:06+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d5fab5bb69..3a7a34d10e 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -2210,7 +2210,7 @@ msgstr "Раководење со начинот на кој добивате е #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. msgid "Email address" -msgstr "Е-поштенска адреса" +msgstr "Е-пошта" #. TRANS: Form note in e-mail settings form. msgid "Current confirmed email address." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 73a8714ab7..86d141877a 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ml\n" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 8861a67b73..f8dd6b7e44 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -14,19 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:12+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index af8d988d6a..868156a8d4 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -5384,7 +5384,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5392,7 +5392,7 @@ msgid "" msgstr "" "**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst]" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " -"[StatusNet](http://status.net/). " +"[StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -6244,7 +6244,6 @@ 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 " @@ -6254,10 +6253,9 @@ msgstr "" "StatusNet is vrije software. U kunt het herdistribueren en/of wijzigen in " "overeenstemming met de voorwaarden van de GNU Affero General Public License " "zoals gepubliceerd door de Free Software Foundation, versie 3 van de " -"Licentie, of (naar uw keuze) elke latere versie. " +"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 " @@ -6267,7 +6265,7 @@ msgstr "" "Dit programma wordt verspreid in de hoop dat het bruikbaar is, maar ZONDER " "ENIGE GARANTIE; zelfs zonder de impliciete garantie van VERKOOPBAARHEID of " "GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU Affero General Public License " -"voor meer details. " +"voor meer details." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index f79345c370..9b26abc3bf 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Polish (Polski) # Exported from translatewiki.net # +# Author: Bartek50003 # Author: McDutchie # Author: Raven # Author: Sp5uhe @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:13+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -21,12 +22,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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format @@ -36,6 +37,10 @@ msgid "" "contact them at %2$s to make sure. Otherwise, wait a few minutes and try " "again." msgstr "" +"Baza danych dla %1$s nie odpowiada, więc witryna może nie działać poprawnie. " +"Administratorzy prawdopodobnie już wiedzą o tym problemie, ale możesz się z " +"nimi skontaktowac przez %2$s aby się upewnić. W przeciwnym wypadku poczekaj " +"kilka minut i spróbuj ponownie." #. TRANS: Error message. msgid "An error occurred." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index cfba028579..c9c7d35db6 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,18 +19,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 712e0ea175..2148d586a2 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,19 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:16+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index af4cb9949a..68eaf72112 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,19 +19,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/statusnet.pot b/locale/statusnet.pot index e59d4fc9df..f4b58c0ddd 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 1872cb71f9..8d7ff31c1a 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 28e9fcf124..1d83434dc2 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:19+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index 43ce3117e5..ec4dbbc9a6 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 5dae7eeb6d..4cd9a037e5 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 4fa086b596..7bb82801cd 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,19 +18,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-10-10 14:22:23+0000\n" +"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" #. TRANS: Database error message. #, php-format diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index ccbe5040a4..719b908d8e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 b4925aa70b..5f7194e3de 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:32+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index 5b69b86a84..d5834616b2 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index 586a491579..f2461eec16 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index aa25aeb64a..1f3d0505ef 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 9ecca1492c..954baf83bd 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 89d2ba3b0d..51463b9c32 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 6102bea75d..241a0a4516 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 0c0ec93a8d..802ced65a5 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 3c7c8a68ef..f2b381a728 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index d2e795d7a0..38226e3747 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:33+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index e16991e8c4..331a52e812 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po index a8e9a8fe26..b820395335 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 0eec7d8d18..e15c8d2ccd 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 28921e6024..984ab4f292 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index d218b8e937..9abd71f815 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:34+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index d683a6bb4b..0e6c00f3da 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index e1b19de832..de5916c7ae 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index d7534c5679..0055bba4b2 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 6e608e374c..cd21c951a6 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index ba134cf620..1a7ffee35f 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index d6169e0924..d4cc7f0870 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 4be4d08221..5ec5f353c1 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 0c8cee51ee..5f9cc3ceb7 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:19+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 518bafd72a..0d36cf6891 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:19+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index 4ce6bb2066..d23679a60b 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:19+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 84e75c8f79..e53667ebb0 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po index 781fdd635e..fcbaa0d56f 100644 --- a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:19+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 5812b1da7c..274f6cd7a5 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index 568c1d2ddf..9d6c3c6360 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po index 96a174f66e..6ca08745c0 100644 --- a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 5c43ee8503..5b2af0f498 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 269f90cf4b..8131511e93 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po index 118ac8fbf1..80c796323f 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:20+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index a1e3ddebe5..1eb7ebda72 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index 53f31cf512..773eef56c2 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:20+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index 0e8230b7d4..a85841d139 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index e04cacecaa..a877755034 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index 5196a291b0..fc7e7675d8 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 38f53791da..4f82b62870 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index b4949ad442..cc76a63bef 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Activity/locale/Activity.pot b/plugins/Activity/locale/Activity.pot index 2bcd74a3ba..70a3e9fc86 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 index 0988fc60fb..784f8abe02 100644 --- a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index 725eafb4b2..868956b055 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:22+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-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index c0b3ca3b41..0184f9e27e 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po index 81635c4018..5a1e22c806 100644 --- a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:22+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..c8b3430832 --- /dev/null +++ b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po @@ -0,0 +1,121 @@ +# Translation of StatusNet - Activity 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 - Activity\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 uniuse ao grupo %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 comezou a seguir a %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) comezou a seguir a %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 deixou de seguir a %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) deixou de seguir a %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 gustou da actualización de %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) gustou do estado de %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 deixou de gustar da actualización " +"de %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) deixou de gustar do estado de %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) uniuse ao grupo %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 deixou o grupo %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) deixou o grupo %3$s (%4$s)." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "Emite notificacións cando acontecen actividades sociais." diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index b216127704..9e41643a86 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index a95cf4feb4..1ad50eb8e6 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index ced9f7c4ba..8015cbf599 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index 1a6baa34a1..2b0c273fa5 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 07ba8802d5..24a7ab107a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 c77ee1ff31..ccca4b64a3 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index b033fbc565..c32bd122c0 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index 167755372b..4160896f55 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 8eaa2a690f..bdf598e183 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,13 +14,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 4425ae9458..811d113ee1 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po index 4d61d32abf..b5492d8ca6 100644 --- a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 04966ac5e7..4ce6d7a4f7 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,13 +13,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index ac7f2fa6a9..27d30bde7e 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -33,7 +33,7 @@ msgstr "AdSense" #. TRANS: Plugin description. msgid "Plugin to add Google AdSense to StatusNet sites." -msgstr "" +msgstr "Complemento para engadir Google AdSense aos sitios de StatusNet." #. TRANS: Title of AdSense administrator panel. msgctxt "TITLE" @@ -54,19 +54,19 @@ msgstr "Identificación do cliente de Google." #. TRANS: Field label in AdSense administration panel. msgid "Ad script URL" -msgstr "" +msgstr "Enderezo URL da escritura do anuncio" #. TRANS: Field title in AdSense administration panel. msgid "Script URL (advanced)." -msgstr "" +msgstr "Enderezo URL da escritura (avanzado)." #. TRANS: Field label in AdSense administration panel. msgid "Medium rectangle" -msgstr "" +msgstr "Rectángulo mediano" #. TRANS: Field title in AdSense administration panel. msgid "Medium rectangle slot code." -msgstr "" +msgstr "Código disposto no rectángulo mediano." #. TRANS: Field label in AdSense administration panel. msgid "Rectangle" @@ -74,7 +74,7 @@ msgstr "Rectángulo" #. TRANS: Field title in AdSense administration panel. msgid "Rectangle slot code." -msgstr "Código disposto no rectángulo" +msgstr "Código disposto no rectángulo." #. TRANS: Field label in AdSense administration panel. msgid "Leaderboard" @@ -90,7 +90,7 @@ msgstr "Rañaceos" #. TRANS: Field title in AdSense administration panel. msgid "Wide skyscraper slot code." -msgstr "" +msgstr "Código disposto no rañaceos." #. TRANS: Button text to save settings in AdSense administration panel. msgctxt "BUTTON" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 194d4e2a97..3279f58cb4 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index ab1309f58f..fb59098e37 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:25+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 (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: it\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 48dba5742b..d8bfa3e498 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:25+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 (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ka\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index 6c5cd23d2e..ed091dc0c7 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po index 0d6bc0a1d4..3508bc4e1f 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index 881e600f40..e01a7ee879 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ 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:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 8f96929bfd..ed1754b33b 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index a5d2ee3b2f..83b8cde35c 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index d1ca190f4d..a68b7839f0 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index f5db6c71c9..f6aa74b6e3 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index b3c90d8f7e..bf1f491ba4 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index eb4f84efc0..1362868ebb 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 4b3a2e5f38..8216363ef3 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index ce0dbac70b..f5ec101ade 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index f93886080d..7cba41d9af 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 8fa62734d7..59198a21ae 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index a402d158c1..7f323cb982 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index eb47166496..d440a8e550 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po index d1a2a2178c..dc799d378d 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po index d17104e88b..fb0e06f7a2 100644 --- a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index 0525a3cf60..051b64c260 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index 22e16a680c..801a44d78d 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po new file mode 100644 index 0000000000..95c26d63ff --- /dev/null +++ b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - Aim 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 - Aim\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:28+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:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Envíame unha mensaxe para publicar unha nota" + +#. 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 "Cómpre especificar un usuario." + +#. TRANS: Exception thrown in AIM plugin when password has not been specified. +msgid "Must specify a password." +msgstr "Cómpre especificar un contrasinal." + +#. TRANS: Plugin description. +msgid "" +"The AIM plugin allows users to send and receive notices over the AIM network." +msgstr "" +"O complemento AIM permite aos usuarios enviar e recibir mensaxes desde a " +"rede de AIM." diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index cf1857787c..4b82343d1c 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index 1ca5a80f22..e9d9c20f7e 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po index 922056a4cd..6725a7de51 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 4f2bb07222..89787b6742 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 013d997b24..d6a1cb4469 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 033076c819..f3c219c86c 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ 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:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 6268b2e41a..09316fe55a 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 48de024cb3..505650e126 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 1470e6810c..71e686df46 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 844ddbd602..6621b85306 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index e63ebbc7ba..091cdb1ed8 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:30+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index f4b7513813..0836e49cce 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index d6ed019d5c..2af3cf69e3 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index b0aea4c454..fb037990da 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index d0a52df8f1..7407ddc74e 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 27dcc42e64..3a981e6cbd 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index b5cfcb5680..df06ae6653 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -38,6 +38,8 @@ msgstr "Non se puido crear o favorito do aviso con ID %d." msgid "" "Could not disfavor notice! Please make sure your browser has cookies enabled." msgstr "" +"Non se puido eliminar a nota dos favoritos! Asegúrese de que o navegador ten " +"as cookies habilitadas." #. TRANS: Client error. msgid "There was a problem with your session token. Try again, please." @@ -57,7 +59,7 @@ msgstr "Engadir aos favoritos" #. TRANS: Label for tally for number of times a notice was favored. msgid "Favored" -msgstr "" +msgstr "Favorita" #. TRANS: Server exception. msgid "Could not create anonymous user session." @@ -65,12 +67,14 @@ msgstr "Non se puido crear a sesión de usuario anónimo." #. TRANS: Plugin description. msgid "Allow anonymous users to favorite notices." -msgstr "" +msgstr "Permitir aos usuarios anónimos marcar notas como favoritas." #. TRANS: Client error. msgid "" "Could not favor notice! Please make sure your browser has cookies enabled." msgstr "" +"Non se puido engadir a nota aos favoritos! Asegúrese de que o navegador ten " +"as cookies habilitadas." #. TRANS: Client error. msgid "This notice is already a favorite!" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index e91d97550c..959b187bd1 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 4be0e6d38e..9e988b69a5 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 15f1512ccb..b9ac722c24 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index c14075226c..e4e3c85331 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 1004d069c6..181fa64eeb 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 6a833c04ae..8165b7a4c2 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index 63d71510de..424f0325c7 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 89e58bf23a..c960f41c9d 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index 54f0e0f1a6..446291f515 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index 4116b10752..8fd81bce3d 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po index 416323fc98..a1f624e936 100644 --- a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -24,4 +24,4 @@ msgstr "" #. TRANS: Plugin description. msgid "Allows random sampling of API requests." -msgstr "Permite dar unha mostra aleatoria das solicitudes do API." +msgstr "Permite dar unha mostra aleatoria das solicitudes da API." diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index cee98eb293..5556dbbc35 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index f75efe69cb..ecaf2c8574 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index 8d2fd899a1..3c060f59d6 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index 9896744de7..d74fa95dd6 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po index f690570832..a6abb2ad30 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index b579d30ca2..88214ac489 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index 37ec473850..d4a09eb9f7 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po index 0597528d81..1b94dc17d4 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index ad83fffd35..861fb369dd 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index cf32d8892a..c874d5e64d 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 ea0d5cf3ae..b138a3d531 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index 086d0ccb48..df1a9d77f1 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index fa71c5cc4f..8420980512 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 36226a298e..b0f165f569 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index b897ad55b5..39f98a187d 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..99398de022 --- /dev/null +++ b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - AutoSandbox 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 - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Automatically sandboxes newly registered members." +msgstr "Sitúa de xeito automático aos novos usuarios nunha zona de probas." + +#. TRANS: User instructions after registration. +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Teña en conta que inicialmente será enviado a unha zona de probas, de xeito " +"que as súas mensaxes non apareceran na liña temporal pública." + +#. TRANS: User instructions after registration. +#. TRANS: %s is a clickable e-mailaddress. +#, php-format +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to %s to speed up the unsandboxing " +"process." +msgstr "" +"Teña en conta que inicialmente será enviado a unha zona de probas, de xeito " +"que as súas mensaxes non apareceran na liña temporal pública. Envíe unha " +"mensaxe a %s para acelerar o proceso de abandonar a zona de probas." diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index 07b9f1c65d..ba921ccb15 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index bfefeab3a9..87b55e1eb9 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 0d1e9aa848..3f0bc8d5bd 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 897acc6029..f4481ad914 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 19a94340eb..9278bc7917 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 3d4b7a727a..8ac714bd06 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index f83fa30253..07d2be274a 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 1f43c5f9d6..3401864501 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 36fecf52aa..23f8751311 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index de8f1b01d1..2c4f7365d7 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index 8500b68d88..29599689cc 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index da9ea98f10..495e472f37 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index f6e5934923..1a77011a95 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po index a459618fe3..8a9a42944a 100644 --- a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 481cb54bcd..30d95c40e7 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po index 190e9469f8..6a6d9930df 100644 --- a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 45309d4ba4..3d99218e4c 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 7093177dad..80a62a60f4 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index c85f048480..5cfd443680 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po index 1e3ee7bce2..c72833e6b5 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index b8093fb929..ce7f736fdb 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po index 487bebe465..a85624293d 100644 --- a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index 01a9463c73..5039a6a6cb 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:37+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 2005a60353..071c4ab00a 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 74fc682384..817d24bddd 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index c426aae7b7..0f8a2a071b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 29b4adf059..9485be5955 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:40+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index ce7f77f345..f578f0ef1d 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index 88b50813b0..9802873583 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:41+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 41a3bd3631..891325a62c 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po index cdb53d9f4e..c8e15d8313 100644 --- a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 77eddc0ef0..4782343f9c 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 67985511e7..45a710f8d5 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index c54f5476bc..c5b7ede132 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index 5173ccf333..8606977cff 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index 94b5687361..ed6182e95c 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:41+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index 53e99c23b1..523f382526 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po index 9372c6040f..354a207a26 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 60750aa7e3..52a6cf2d19 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 8528b9e9ff..cddd678a15 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 efee946835..35760986c4 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:43+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index b8b47b22dc..9eaf4ad3c2 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index 1b04689b50..cf911a3c9b 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index d9977fd40e..9ecf9c7367 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index 871efc3b51..6a41c40e02 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:43+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index 138570bf75..b3815207c1 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -33,6 +33,10 @@ msgid "" "bit.ly/a/your_api_key). This verifies that this is an authorized account, " "and allow you to use bit.ly's tracking features and custom domains." msgstr "" +"O acurtamento de enderezos URL bit.ly necesita [unha conta de bit.ly e unha " +"clave API](http://bit.ly/a/your_api_key). Isto comproba que esta é unha " +"conta autorizada e permite usar as características de seguimento e dominios " +"personalizados de bit.ly." #. TRANS: Client error displayed when using too long a key. msgid "Invalid login. Maximum length is 255 characters." @@ -49,11 +53,12 @@ msgstr "Credenciais" #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "Leave these empty to use global default credentials." -msgstr "" +msgstr "Deixe isto en branco para usar as credenciais globais por defecto." #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "If you leave these empty, bit.ly will be unavailable to users." msgstr "" +"Se deixa isto en branco, bit.ly non estará dispoñible para os usuarios." #. TRANS: Field label in administration panel for bit.ly URL shortening. msgid "Login name" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 2bc2b8772f..674df9dc40 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 0ae73df628..29ab0ed0ea 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index be591baebb..6face8efe8 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 95e6e7d0cd..a5ab0346fd 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 8375dc49cd..c399d54e4e 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:44+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index 514f0d84ad..1372782e03 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:44+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index b46c05a797..d07c43420e 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index db032e9597..4d592047ff 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 1f9ea432a3..48fd0da442 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 c0ab9fa0e1..b7b5cd4b97 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index 5d53a20f4b..486f6deef6 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index 07dbd13c35..71f3e379e0 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 8c44a11375..ef08793e2b 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index c805cf773c..bd0fb1b400 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -1,5 +1,5 @@ # Translation of StatusNet - Blacklist to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,123 +9,119 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:11:34+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:48+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 17:54:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown if the Blacklist plugin configuration is incorrect. +#. TRANS: %1$s is a configuration section, %2$s is a configuration setting. +#, php-format +msgid "Unknown data type for config %1$s + %2$s." +msgstr "Tipo de datos descoñecido para a configuración %1$s + %2$s." + #. TRANS: Validation failure for URL. %s is the URL. -#: BlacklistPlugin.php:149 #, php-format msgid "You may not register with homepage \"%s\"." -msgstr "" +msgstr "Non se pode rexistrar coa páxina de inicio \"%s\"." #. TRANS: Validation failure for nickname. %s is the nickname. -#: BlacklistPlugin.php:160 #, php-format msgid "You may not register with nickname \"%s\"." -msgstr "" +msgstr "Non se pode rexistrar co alcume \"%s\"." #. TRANS: Validation failure for URL. %s is the URL. -#: BlacklistPlugin.php:185 #, php-format msgid "You may not use homepage \"%s\"." -msgstr "" +msgstr "Non pode usar a páxina de inicio \"%s\"." #. TRANS: Validation failure for nickname. %s is the nickname. -#: BlacklistPlugin.php:196 #, php-format msgid "You may not use nickname \"%s\"." -msgstr "" +msgstr "Non pode usar o alcume \"%s\"." #. TRANS: Validation failure for URL. %s is the URL. -#: BlacklistPlugin.php:239 #, php-format msgid "You may not use URL \"%s\" in notices." -msgstr "" +msgstr "Non pode usar o enderezo URL \"%s\" nas notas." -#: BlacklistPlugin.php:343 +#. TRANS: Plugin description. msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" +"Mantén unha lista negra cos patróns de alcumes e de enderezos URL prohibidos." #. TRANS: Menu item in admin panel. -#: BlacklistPlugin.php:381 -#, fuzzy msgctxt "MENU" msgid "Blacklist" msgstr "Lista negra" #. TRANS: Tooltip for menu item in admin panel. -#: BlacklistPlugin.php:383 -#, fuzzy msgctxt "TOOLTIP" -msgid "Blacklist configuration" -msgstr "Configuración da lista negra" +msgid "Blacklist configuration." +msgstr "Configuración da lista negra." -#. TRANS: Checkbox with text label in the delete user form. -#: BlacklistPlugin.php:410 +#. TRANS: Checkbox label in the blacklist user form. msgid "Add this nickname pattern to blacklist" -msgstr "" +msgstr "Engadir o patrón deste alcume á lista negra" -#. TRANS: Checkbox with text label in the delete user form. -#: BlacklistPlugin.php:420 +#. TRANS: Checkbox label in the blacklist user form. msgid "Add this homepage pattern to blacklist" -msgstr "" +msgstr "Engadir o patrón desta páxina de inicio á lista negra" #. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. #. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. -#: BlacklistPlugin.php:499 BlacklistPlugin.php:534 #, php-format -msgid "Users from \"%s\" blocked." -msgstr "" +msgid "Users from \"%s\" are blocked." +msgstr "Os usuarios de \"%s\" están bloqueados." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#: BlacklistPlugin.php:510 #, php-format -msgid "Posts from nickname \"%s\" disallowed." -msgstr "" +msgid "Notices from nickname \"%s\" disallowed." +msgstr "As notas do alcume \"%s\" non están permitidas." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. -#: BlacklistPlugin.php:545 #, php-format -msgid "Can't subscribe to nickname \"%s\"." -msgstr "" +msgid "Cannot subscribe to nickname \"%s\"." +msgstr "Non pode subscribirse ao alcume \"%s\"." -#: blacklistadminpanel.php:52 +#. TRANS: Title of blacklist plugin administration panel. +msgctxt "TITLE" msgid "Blacklist" msgstr "Lista negra" -#: blacklistadminpanel.php:62 +#. TRANS: Instructions for blacklist plugin administration panel. msgid "Blacklisted URLs and nicknames" -msgstr "" +msgstr "Enderezos URL e alcumes na lista negra" -#: blacklistadminpanel.php:174 +#. TRANS: Field label in blacklist plugin administration panel. msgid "Nicknames" msgstr "Alcumes" -#: blacklistadminpanel.php:176 -msgid "Patterns of nicknames to block, one per line" -msgstr "" +#. TRANS: Field title in blacklist plugin administration panel. +msgid "Patterns of nicknames to block, one per line." +msgstr "Patróns de alcumes a bloquear, un por liña." -#: blacklistadminpanel.php:182 +#. TRANS: Field label in blacklist plugin administration panel. msgid "URLs" msgstr "Enderezos URL" -#: blacklistadminpanel.php:184 -msgid "Patterns of URLs to block, one per line" -msgstr "" +#. TRANS: Field title in blacklist plugin administration panel. +msgid "Patterns of URLs to block, one per line." +msgstr "Patróns de enderezos URL a bloquear, un por liña." -#: blacklistadminpanel.php:198 +#. TRANS: Button text in blacklist plugin administration panel to save settings. +msgctxt "BUTTON" msgid "Save" msgstr "Gardar" -#: blacklistadminpanel.php:201 -msgid "Save site settings" -msgstr "Gardar a configuración do sitio" +#. TRANS: Button title in blacklist plugin administration panel to save settings. +msgid "Save site settings." +msgstr "Gardar a configuración do sitio." diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index bda23ed5e6..186b92277a 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index b6b44f503e..a24d82cd3e 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index e1da2def9f..30ec598705 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index b8a36b4b2d..34b23b7405 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 89071404ef..8cbdbeade6 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index a9adedbf51..ba068cc9dc 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index 5b4ae520cb..ecfe8a0a8f 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 9527647e25..1d45616500 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index bcd7eef85e..592e143c80 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 f3f887a081..7c37775370 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:50+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 144c1b4990..2ed2eeefe8 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index d18a0ffe5c..1e38151440 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index de8b0f6c38..265cfebf2f 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index 98bf528040..e8db1d1389 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 9a86e899ee..3481e3573c 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index b576e35787..018de83d1e 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po index 317eef5ee6..38953aaef9 100644 --- a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 573cf0a1ed..80dfacfef9 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index bf002b3e75..5ff42599af 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index ba34ceabf1..e35ea8a03b 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 38dfd53baf..00cb5de246 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 5ce95ab1a6..ad2888765a 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 4d94215e03..3b106d7db6 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index b48e924b5d..ff5e3fc047 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index 2fa28f68aa..5609dc433d 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 1214fc075f..efe7dc7966 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 3254884917..c1e9e7ec11 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index 1e68fe5a03..0c58892037 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Blog/locale/Blog.pot b/plugins/Blog/locale/Blog.pot index 4fd362163e..676dbf9bce 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 c2c6c2356b..985a4edf48 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:53+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po index 2b319d329d..6aebe1a68d 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index 6ea399194d..d1aeec93c3 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:53+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 13033e3c08..af400f0013 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po index 55ca537602..d5f59a98b5 100644 --- a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:53+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po index c52fece9d1..b864cc997d 100644 --- a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po index e8a9be43bf..103bda8d1a 100644 --- a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:54+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -24,23 +24,23 @@ msgstr "" #. 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 "" +msgstr "Cómpre estar rexistrado para publicar unha entrada de blogue." #. TRANS: Client exception thrown when trying to post a blog entry without providing a title. msgid "Title required." -msgstr "O título é obrigatorio" +msgstr "O título é obrigatorio." #. TRANS: Client exception thrown when trying to post a blog entry without providing content. msgid "Content required." -msgstr "" +msgstr "Cómpre algún contido." #. TRANS: Page title after sending a notice. msgid "Blog entry saved" -msgstr "" +msgstr "Entrada de blogue gardada" #. TRANS: Plugin description. msgid "Let users write and share long-form texts." -msgstr "" +msgstr "Permite aos usuarios escribir e compartir textos longos." #. TRANS: Blog application title. msgctxt "TITLE" @@ -49,24 +49,24 @@ msgstr "Blogue" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." -msgstr "" +msgstr "Demasiados obxectos de actividade." #. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." -msgstr "" +msgstr "Tipo incorrecto para o obxecto." #. TRANS: Exception thrown when blog plugin comes across a undefined verb. msgid "Unknown verb for blog entries." -msgstr "" +msgstr "Verbo descoñecido para a entrada de blogue." #. TRANS: Exception thrown when requesting a non-existing blog entry for notice. #, php-format msgid "No blog entry for notice %s." -msgstr "" +msgstr "A nota %s non ten ningunha entrada de blogue." #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." -msgstr "" +msgstr "Non hai tal entrada." #. TRANS: Title for a blog entry without a title. msgid "Untitled" @@ -79,7 +79,7 @@ msgstr "Título" #. TRANS: Field title on blog entry form. msgid "Title of the blog entry." -msgstr "" +msgstr "Título da entrada de blogue." #. TRANS: Field label on blog entry form. msgctxt "LABEL" @@ -88,7 +88,7 @@ msgstr "Texto" #. TRANS: Field title on blog entry form. msgid "Text of the blog entry." -msgstr "" +msgstr "Texto da entrada de blogue." #. TRANS: Button text to save a blog entry. msgctxt "BUTTON" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 5563ed68b9..7a05fc012c 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index 2d24141b50..84a7789480 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ 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:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index a4b55b2208..985b217e58 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ 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:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 20c0afccf3..42f79177fb 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 d60b10f6a1..d3db6317a3 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 155accfbd5..0438d23106 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..6150efb881 --- /dev/null +++ b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - BlogspamNet 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 - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception thrown when blogspam.net returns error status. +#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no period). +#, php-format +msgid "Error from %1$s: %2$s" +msgstr "Erro de %1$s: %2$s" + +#. TRANS: Server exception thrown when blogspam.net returns spam status. +#. TRANS: Does not end with period because of unknown contents for %s (spam match). +#, php-format +msgid "Spam checker results: %s" +msgstr "Resultados do verificador de spam: %s" + +#. TRANS: Server exception thrown when blogspam.net returns an unexpected status. +#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no period). +#, php-format +msgid "Unexpected response from %1$s: %2$s" +msgstr "Resposta inesperada de %1$s: %2$s" + +#. TRANS: Plugin description. +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Complemento para comprobar as notas enviadas con blogspam.net." diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index dfea5d7cf4..8bcdf5758d 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index b9aa68d221..6ba72fdc79 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 33ca0ddab7..1965cb11b6 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index d3457a7399..58683586ea 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index 27239890f1..6f3a1a6f93 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 14e70ce6f9..9ffc13276a 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 24437be049..18fc64fbce 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 4947aa4d09..01eccead20 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 53d2cf256f..dff1db6dac 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:59+0000\n" "Language-Team: Arabic \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index dfc9c6db61..9a96834af5 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index caa690bdd0..09d908b42a 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:43: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po index 98d6f1caae..ca3fdce865 100644 --- a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 8cd97f8b52..f0bcf22370 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,13 +14,13 @@ 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:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..fa514fe82d --- /dev/null +++ b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po @@ -0,0 +1,264 @@ +# Translation of StatusNet - Bookmark 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 - Bookmark\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Falta a etiqueta nunha
." + +#. TRANS: Client exception thrown when a bookmark in an import file is private. +msgid "Skipping private bookmark." +msgstr "Saltando o marcador privado." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "Non existe ese marcador." + +#. 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 "Marcador de %1$s para \"%2$s\"" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting bookmarks." +msgstr "Extensión simple para soportar marcadores." + +#. 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 "Importar os marcadores de del.icio.us" + +#. TRANS: Client exception thrown when a bookmark is formatted incorrectly. +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "Agardábase exactamente 1 ligazón rel=related nun marcador." + +#. TRANS: Server exception thrown when a bookmark has multiple attachments. +msgid "Bookmark notice with the wrong number of attachments." +msgstr "A nota do marcador ten un número incorrecto de anexos." + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Bookmark" +msgstr "Favorito" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "Bookmark on %s" +msgstr "Marcador en %s" + +#. TRANS: Client exception thrown when trying to save a new bookmark that already exists. +msgid "Bookmark already exists." +msgstr "O marcador xa existe." + +#. 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 "Engadir" + +#. TRANS: Client exception thrown when an unknown URL is provided. +msgid "Unknown URL." +msgstr "Enderezo URL descoñecido." + +#. 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 "Notas que ligan con %s" + +#. 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 "Notas que ligan con %1$s, páxina %2$d" + +#. TRANS: Client exception thrown when trying to import bookmarks without being logged in. +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" +"Unicamente os usuarios rexistrados poden importar copias de seguridade de " +"del.icio.us." + +#. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. +msgid "You may not restore your account." +msgstr "Non pode restaurar a súa conta." + +#. 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 "Ningún ficheiro cargado." + +#. 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 "O ficheiro subido supera a directiva upload_max_filesize no 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 "" +"O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no " +"formulario HTML." + +#. TRANS: Client exception thrown when a file was only partially uploaded. +msgid "The uploaded file was only partially uploaded." +msgstr "O ficheiro só se subiu parcialmente." + +#. TRANS: Client exception thrown when a temporary folder is not present. +msgid "Missing a temporary folder." +msgstr "Falta un cartafol temporal." + +#. TRANS: Client exception thrown when writing to disk is not possible. +msgid "Failed to write file to disk." +msgstr "Non se puido escribir o ficheiro no disco." + +#. TRANS: Client exception thrown when a file upload has been stopped. +msgid "File upload stopped by extension." +msgstr "Interrompeuse a carga do ficheiro por mor da extensión." + +#. TRANS: Client exception thrown when a file upload operation has failed. +msgid "System error uploading file." +msgstr "Houbo un erro no sistema ao cargar o ficheiro." + +#. 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 "Non existe o ficheiro \"%s\"." + +#. 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 "O ficheiro non é normal: \"%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 "Non se pode ler o ficheiro \"%s\"." + +#. TRANS: Success message after importing bookmarks. +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"Importáronse os marcadores. Os seus marcadores debería aparecer nas procuras " +"e na páxina do seu perfil." + +#. TRANS: Busy message for importing bookmarks. +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "Estanse importando os marcadores. Agarde uns minutos polos resultados." + +#. TRANS: Form instructions for importing bookmarks. +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "Pode cargar unha copia de seguridade de marcadores de delicious.com ." + +#. TRANS: Button text on form to import bookmarks. +msgctxt "BUTTON" +msgid "Upload" +msgstr "Cargar" + +#. TRANS: Button title on form to import bookmarks. +msgid "Upload the file." +msgstr "Cargar o ficheiro." + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Title" +msgstr "Título" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Notes" +msgstr "Notas" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Field title on form for adding a new bookmark. +msgid "Comma- or space-separated list of tags." +msgstr "Lista de etiquetas separadas por comas ou por espazos en branco." + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Title for action to create a new bookmark. +msgid "New bookmark" +msgstr "Novo marcador" + +#. 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 "Cómpre estar rexistrado para publicar un marcador." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a title. +msgid "Bookmark must have a title." +msgstr "O marcador debe ter un título." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a URL. +msgid "Bookmark must have an URL." +msgstr "O marcador debe ter un enderezo URL." + +#. TRANS: Page title after posting a bookmark. +msgid "Bookmark posted" +msgstr "Marcador publicado" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "Obtendo a copia de seguridade desde o ficheiro \"%s\"." diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 5afa3a8647..8852e8651c 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index a19b55fb77..64f666dd1b 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: Japanese \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index faec18161d..9effba9439 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index 8eed6a5bde..3227cc45d8 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index 57a06e4e56..df3165cf7c 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" "Language-Team: Swedish \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index 05ee989a34..1b210bf471 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 2cbbb7c45c..815b0aa36b 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index c421bbb4cc..9c4281acba 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 f645105ade..1c3f2e8e36 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:01+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 3e069e2e00..0ac1293209 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:01+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index 9faf38bb86..272f9f1a89 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index d60f034ff2..8cf6164002 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index 3881a020bc..5191f9f9a5 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 61f488282b..5edf6264c5 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po index 70032c6815..c2ea124e9b 100644 --- a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index daa34f4728..9a1ca44c4e 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 43af68eac8..ca2b2fd1fc 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index 4f0929c334..2d7d74d025 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index bc89b78dc8..b4e063b172 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 07338e398d..3e63707fb2 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 5f71d06a1a..936fc01877 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index 85517bee1a..0ac05f1ce8 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index b63dfdd7ab..579a0924b6 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 1c1581e28c..d115abd54b 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 280aad989a..9d0d268bd5 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index c4a93c8594..69066943cb 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 30644541f8..b0dfb7357f 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:04+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index 5fbc9e2502..b2b41a0a8d 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po index 4fa5f8a51d..45f11202af 100644 --- a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -29,7 +29,7 @@ msgstr "CAS" #. TRANS: Tooltip for menu item. CAS is Central Authentication Service. msgid "Login or register with CAS." -msgstr "" +msgstr "Inici de sessió o registre amb CAS." #. TRANS: Invitation to users with a CAS account to log in using the service. #. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. @@ -67,3 +67,5 @@ 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 "" +"S'ha produït un error en definir l'usuari. Probablement no hi esteu " +"autoritzat." diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 134019dadb..527d052fdc 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 2a6a322517..af8ff342cb 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po index ac0f0ea3f0..f604c8a9c3 100644 --- a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:06+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 89b1739257..5f10075fe3 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po index b0382ce901..58a1759fd4 100644 --- a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po @@ -1,5 +1,5 @@ # Translation of StatusNet - CasAuthentication to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,64 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:32:51+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:25:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Menu item. CAS is Central Authentication Service. -#: CasAuthenticationPlugin.php:83 msgid "CAS" -msgstr "" +msgstr "Servizo de autenticación central (SAC)" #. TRANS: Tooltip for menu item. CAS is Central Authentication Service. -#: CasAuthenticationPlugin.php:85 msgid "Login or register with CAS." -msgstr "" +msgstr "Iniciar sesión ou rexistrarse co SAC." #. TRANS: Invitation to users with a CAS account to log in using the service. #. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. #. TRANS: These two elements may not be separated. -#: CasAuthenticationPlugin.php:101 #, php-format msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" msgstr "" +"(Ten unha conta co SAC? Probe o noso [rexistro SAC](%%action.caslogin%%)!)" -#: CasAuthenticationPlugin.php:128 +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. msgid "Specifying a server is required." -msgstr "" +msgstr "Cómpre especificar un servidor." -#: CasAuthenticationPlugin.php:131 +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. msgid "Specifying a port is required." -msgstr "" +msgstr "Cómpre especificar un porto." -#: CasAuthenticationPlugin.php:134 +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. msgid "Specifying a path is required." -msgstr "" +msgstr "Cómpre especificar unha ruta." #. TRANS: Plugin description. CAS is Central Authentication Service. -#: CasAuthenticationPlugin.php:154 msgid "" "The CAS Authentication plugin allows for StatusNet to handle authentication " "through CAS (Central Authentication Service)." msgstr "" +"O complemento de autenticación SAC permite a StatusNet manexar a " +"autenticación a través do SAC (servizo de autenticación central)." -#: caslogin.php:28 +#. TRANS: Client error displayed when trying to log in while already logged on. msgid "Already logged in." msgstr "Xa se identificou." -#: caslogin.php:39 +#. TRANS: Server error displayed when trying to log in with incorrect username or password. msgid "Incorrect username or password." msgstr "Nome de usuario ou contrasinal incorrectos." -#: caslogin.php:45 +#. TRANS: Server error displayed when login fails in CAS authentication plugin. msgid "Error setting user. You are probably not authorized." msgstr "" "Houbo un erro ao configurar o usuario. Probablemente non estea autorizado " diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index 24c1350d9d..2b59a73865 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:06+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index 04681614a6..c67634a74a 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index dc991cb700..c89bd0f2fa 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 86544ee235..3036129f95 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 4ac8667cae..d5c02d512f 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index da81eff7aa..f7891230e6 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 4f5be1af4c..9c357f3050 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 9819d6fd38..6563e30e09 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index 98c2ceb4d1..2904ad1f97 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index ec3bc5f210..80fde94082 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 a855b241cd..4cfc66a158 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index eacbf0460a..db1fa84b95 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index f12479c4b6..d74c2c34c2 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po index a4d3e6dc6f..e4d77252a0 100644 --- a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index cbb15345f5..dca8d5e5a3 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po index 7c032518b1..a4f32cd7aa 100644 --- a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 1d59c8ab31..ea3fed861f 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 5275a793c7..bb686e3ac8 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index f6c6b1463b..914f5e990f 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index cec0355366..c00a3e9766 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 24bd254eb2..e55369ce8e 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index ef1369b121..ab5d0fc1f6 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index e5eceed15b..0825df969a 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 761dc43d46..e206286c68 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 366e5e1199..67a86dcc36 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 7bfa06e2d5..563b8151f5 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 430eca3492..6b5899c4aa 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 113dd3354f..a1470fffb7 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 82d7798cf9..1597d103df 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po index 177109cbf8..5075679af3 100644 --- a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index eed431f8be..99f622b7a0 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index eea4282344..fb466028aa 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index b70a93bd35..30fcdc86b0 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 4d5bb17586..e5d3b3837f 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index a1ba682bba..cc3db5d6f6 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index c71920c6eb..c40524ac5c 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index f621d4cfe7..cbe6207cc6 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index ab7c90f3b0..9e292ca670 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 7a8b47211d..9e1ca11281 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 555f010698..09a4b41e07 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 9f8df76af8..80ece289e7 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 525b4f7976..1a44819134 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 5fe4a4caa7..48ff32fde4 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 609b9e61b0..da44a102ab 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index 64a928735a..fc2412f0c9 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 1c0d739611..f34c6018e3 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po index 07cd757115..bee1e8197e 100644 --- a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:12+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 81f217f4d3..9442a81190 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7bf197edf9..4aa8018dd7 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 31efcc9be1..c911ba29cc 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 3d7b9271af..e2c59927da 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 0bd8ba6b8b..39fae87ec0 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 589a67d348..4b083a1101 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index ec94264d1e..ca007fca0f 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index c57698f071..f04646bb29 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-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index c76c8690a5..999d3ce22e 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index ddb5085f71..e6d9fa9df4 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index c48800ecac..960287e374 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 92e6e8ea06..edfd0d0406 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index e0a5b7da54..be80e26d28 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index 96f8b5f9fb..196aa5c93c 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 97d6d85b3e..dd59abeb85 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:15+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index 11ca39c7fe..ae70ce4031 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index 660acce19d..b1964dd722 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po index 9984042ed5..c3d843ce0d 100644 --- a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:16+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 4323566546..36078838de 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index 40dafc8d89..1301bb2ae0 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po index 9894f5bbf1..8a04f4e5f8 100644 --- a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:16+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -25,22 +25,22 @@ msgstr "" #. TRANS: Page title for user directory. %d is a page number. #, php-format msgid "User Directory, page %d" -msgstr "" +msgstr "Directorio de usuario, páxina %d" #. TRANS: Page title for user directory. msgid "User directory" -msgstr "" +msgstr "Directorio de usuario" #. TRANS: Page title for user directory. %s is the applied filter. #, php-format msgid "User directory - %s" -msgstr "" +msgstr "Directorio de usuario - %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 "" +msgstr "Directorio de usuario - %1$s, páxina %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -48,10 +48,13 @@ 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 "" +"Buscar xente en %%site.name%% por nome, lugar ou intereses. Separe os termos " +"con espazos en branco. Cada termo ten que estar formado por tres ou máis " +"caracteres." #. TRANS: Fieldset legend. msgid "Search site" -msgstr "" +msgstr "Buscar no sitio" #. TRANS: Field label for user directory filter. #. TRANS: Field label for input of one or more keywords. @@ -67,7 +70,7 @@ msgstr "Procurar" #. TRANS: Empty list message for user directory. #, php-format msgid "No users starting with %s" -msgstr "" +msgstr "Non hai usuarios que comecen por %s" #. TRANS: Empty list message for user directory. #. TRANS: Empty list message for searching group directory. @@ -82,27 +85,31 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Asegúrese de que non haxa faltas de ortografía.\n" +"* Probe con palabras clave diferentes.\n" +"* Probe con máis palabras clave xerais.\n" +"* Probe con menos palabras clave." #. TRANS: Title for group directory page. %d is a page number. #, php-format msgid "Group Directory, page %d" -msgstr "" +msgstr "Directorio de grupo, páxina %d" #. TRANS: Title for group directory page. msgid "Group directory" -msgstr "" +msgstr "Directorio de grupo" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %s is the filter string. #, php-format msgid "Group directory - %s" -msgstr "" +msgstr "Directorio de grupo - %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 "" +msgstr "Directorio de grupo - %1$s, páxina %2$d" #. TRANS: Page instructions. msgid "" @@ -112,20 +119,27 @@ 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 "" +"Despois de unirse a un grupo, pode enviar mensaxes a outros membros\n" +"mediante a sintaxe \"!nomedegrupo\".\n" +"\n" +"Navegue polos grupos ou busque grupos polos seus nomes, localizacións ou " +"temas.\n" +"Separe os termos con espazos en branco. Cada termo ten que estar formado por " +"tres ou máis caracteres." #. TRANS: Link to create a new group on the group list page. msgid "Create a new group" -msgstr "" +msgstr "Crear un novo grupo" #. TRANS: Fieldset legend. msgid "Search groups" -msgstr "" +msgstr "Procurar grupos" #. TRANS: Empty list message for searching group directory. #. TRANS: %s is the search string. #, php-format msgid "No groups starting with %s." -msgstr "" +msgstr "Non hai grupos que comecen por %s." #. TRANS: Menu item text for user directory. msgctxt "MENU" @@ -138,7 +152,7 @@ msgstr "Directorio de usuario." #. TRANS: Plugin description. msgid "Add a user directory." -msgstr "" +msgstr "Engadir un directorio de usuario." #. TRANS: Column header in table for user nickname. msgid "Nickname" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index ce6847b56c..98cc57dfae 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po index 430b87bd4b..1177730625 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 1f02ede39f..66029dfe24 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index ec899b1ec6..738eb8f301 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index 81ce2bbe12..1cccdaf1a7 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index a1eef29c83..2f33fb0fea 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index 31ebadb13e..de5929baa0 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 229d1758d0..0ff17d5fdc 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 7004e5c4c4..5de1a7c6ec 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index bedb33d1e5..a3b8f4f214 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index aceeb72f42..761e1c89be 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index f3a82c5045..61e4af1fec 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index c741f04add..d92c47a36d 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index d065975036..84029f6036 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 797661a71a..add5b96848 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po index 66b4196b54..cf3c06bf66 100644 --- a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 5c7cfbc7d3..e30c8fd99f 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index a21a6b053c..5ad0762dee 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index afd59aa9e2..f9306009e1 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index e7452afd41..bd3fc5e819 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index dc5b5f492f..107bd3edb5 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 4ad89df814..4a4298562f 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 6bab5cc25d..58d533691c 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index ab9ee8b348..0d0783db9a 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 003344d3a3..e92cbdef2d 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index 5146671f71..7715d8a3f6 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index ffbba59a28..0eae4e2b50 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 4b45b23570..4a8fe915d0 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index 96c4b450e5..dc49c1bce7 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 2ace1369ed..d6ec053318 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 8fd1c36326..59952a5f3e 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:20+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 11845456a5..eb2783e98d 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po index 3bb150b7b7..b72953b0e5 100644 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:20+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index ead7e7d9ba..aa73416caa 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index c018bb7396..7f80b5e455 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index a710bdc03f..8cdecb6e6f 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po index 1252b0997e..7677115c96 100644 --- a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po @@ -1,5 +1,5 @@ # Translation of StatusNet - Disqus to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,39 +9,41 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:47+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-01-14 13:21:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: User notification that JavaScript is required for Disqus comment display. -#: DisqusPlugin.php:143 +#. 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 "" +"Active o JavaScript para ollar os [comentarios mediante Disqus](http://" +"disqus.com/?ref_noscript=%s)." #. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -#: DisqusPlugin.php:151 msgid "Comments powered by " -msgstr "" +msgstr "Comentarios proporcionados por " #. TRANS: Plugin supplied feature for Disqus comments to notices. -#: DisqusPlugin.php:204 msgid "Comments" msgstr "Comentarios" #. TRANS: Plugin description. -#: DisqusPlugin.php:245 msgid "" "Use Disqus to add commenting to notice " "pages." msgstr "" +"Usa Disqus para engadir comentarios ás " +"páxinas das notas." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 31899d7390..61e469acfc 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index d911c37940..92fdf13055 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 3c42a0b889..a74358685f 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index e998a6ea45..b27e44d661 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index a693ad7ddf..9d72a334f2 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 22a1a929de..6fe0c5bdbc 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index d8ae6c7c59..e3dfa06ea3 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 0a18c80f91..5f427aab28 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index 6f068fb92b..3ba2aa9f82 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index ee2c2789b1..e90515501f 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 9e108d2a99..1a32c7f8f6 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index 269ce44ecd..2f9dc8d3ab 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po index 013b16867c..e151122176 100644 --- a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index 5223df7d4a..5b402b3e78 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index ee0a5f5d82..e2e776aa70 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index b53dca6435..a0975d7b3e 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po index 43b987423c..a929022470 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index 4b0fe11fad..e49d7d4370 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index 8d13b54c9a..efb0f43d41 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index 9c270fbf5f..73d017c533 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index 0b99bd4b84..3b4f2ec77e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 83ba6cf75c..da145b876a 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po index 747b3bb11e..035b6439b1 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:26+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 4a9c1e2924..321f35bb57 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..ec51967c7e --- /dev/null +++ b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - DomainWhitelist 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 - DomainWhitelist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:26+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:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "O enderezo de correo electrónico debe ser deste dominio: %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 "O enderezo de correo electrónico debe ser dun destes dominios: %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 "Ese enderezo de correo electrónico non está permitido neste sitio." + +#. TRANS: Title for invitiation deletion dialog. +msgid "Confirmation Required" +msgstr "Cómpre confirmación" + +#. TRANS: Confirmation text for invitation deletion dialog. +msgid "Really delete this invitation?" +msgstr "Está seguro de querer borrar esta invitación?" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "Restrinxir os dominios para os usuarios de correo electrónico." + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "Convidar colegas" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "Mensaxe persoal" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "Engadir opcionalmente unha mensaxe persoal á invitación." + +#. TRANS: Link description to action to add another item to a list. +msgid "Add another item" +msgstr "Engadir outro elemento" + +#. TRANS: Send button for inviting friends. +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "Enviar as invitacións." diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 0f1fa4b687..28bcc83b57 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index 6e9fee6596..b89b287155 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index f44c1d81da..1f40ab68d4 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index 84a24303f9..e0cf36e49e 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index 5cd58f2ca4..cb6e70872e 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 34ccfc482d..f1968ee22b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 58e6f97d26..6998d5e099 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index b8a652e62b..5f6a2c871a 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index bceed74555..8ef449cc1e 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index b88908e4dc..bea1396739 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index c7d2a22167..544aa13aa5 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index d75213753b..5a11d99e81 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index 4993349c18..ac2fb992a5 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po index f32e51aa3d..8a0cf37f07 100644 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:28+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 652ffeede9..7b3c7bce50 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index eb2492de6b..e9f681eb6c 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 5402678ea6..9965844da8 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 4044e16ef9..430fbb49b5 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:29+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 0386f74f64..69b2803098 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index e757f7b67b..068c33dd19 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 3e05fe2bc6..8bed6425ef 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 8c1edeb3c6..acee5e6f2f 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 53b7119e36..29c6b21845 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 948dbcd669..abfb115395 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 634548d073..7bd60d87c7 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index bf3a40cff8..3fb95dfa4c 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 8cdce5b0d3..a49fe45df3 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index e051ded219..e650df73a9 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 63f28b3591..68404577a4 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index a1e852489c..b4654fe6f7 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index 0db8e9e1cc..c518e994c8 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 89309d745e..6f8e595c94 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index b818fa1528..8843e5eec5 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po index aa0b0d6ce5..cf65859080 100644 --- a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:30+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 8ff7a45452..243488fe67 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 90fe1604bb..65325a42bf 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po index f74bde0ebe..a8af95b6dd 100644 --- a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 15597521ba..f844e14dc2 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index ce26c31f74..91369380da 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 47007851fb..ff5e053ee5 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 6300fe21b9..fc37b59986 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 301468321b..f1430e32fd 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index 95788c603a..0b98ead442 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index f14f3c914f..e839ebdb5a 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 19f6cbec4e..c291e9ab10 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 39ce59a58a..019f6d6f24 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index e1a7499cb0..c3d5c35f5d 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 9a231fab29..848b49099c 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index aea485ebb3..19a4c3e1d7 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index f40b3ddf3e..1fdbe004d9 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index 4af30e9dfc..2c8553e2b8 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 80eca3bbaa..53688d9e69 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ 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:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index 8bb03083f0..c7bd216375 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index befb2d7743..09f5ff8cd2 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index 24539d501f..7742affcc6 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po index c334c6fd70..1e0c6dba6f 100644 --- a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 9daf40ddf1..f2df80411e 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -13,13 +13,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po new file mode 100644 index 0000000000..8e023412fa --- /dev/null +++ b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po @@ -0,0 +1,192 @@ +# Translation of StatusNet - EmailRegistration 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 - EmailRegistration\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:35+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:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Non se permite o rexistro." + +#. TRANS: Client exception trown when trying to register without an invitation. +msgid "Sorry, only invited people can register." +msgstr "Só se pode rexistrar mediante invitación." + +#. TRANS: Client exception thrown when no confirmation code was provided. +msgid "No confirmation code." +msgstr "Sen código de confirmación." + +#. TRANS: Client exception trown when using an invitation multiple times. +msgid "Invitation already used." +msgstr "Xa se empregou esta invitación." + +#. TRANS: Client exception thrown when given confirmation code was not issued. +msgid "No such confirmation code." +msgstr "Non hai tal código de confirmación." + +#. TRANS: Title for registration page. +msgctxt "TITLE" +msgid "Register" +msgstr "Rexistrarse" + +#. TRANS: Title for page where to register with a confirmation code. +msgctxt "TITLE" +msgid "Complete registration" +msgstr "Completar o rexistro" + +#. 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 "" +"Enviouse un correo a %s para confirmar ese enderezo. Comprobe a súa caixa de " +"entrada para ollar as instrucións." + +#. TRANS: Client exception trown when trying to set password with an invalid confirmation code. +msgid "No confirmation thing." +msgstr "Sen elemento de confirmación." + +#. 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 "" +"Debe aceptar os termos do servizo e a política de protección de datos para " +"rexistrarse." + +#. TRANS: Error text when trying to register without a password. +msgid "You must set a password" +msgstr "Ten que definir un contrasinal" + +#. TRANS: Error text when trying to register with too short a password. +msgid "Password must be 6 or more characters." +msgstr "O contrasinal debe conter seis ou máis caracteres." + +#. TRANS: Error text when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "Os contrasinais non coinciden." + +#. TRANS: Exception trown when using an invitation multiple times. +msgid "Failed to register user." +msgstr "Erro ao rexistrar o usuario." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Confirm your registration on %s" +msgstr "Confirme o seu rexistro en %s" + +#. 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 "" +"Alguén (probablemente vostede) solicitou unha conta en %1$s usando este " +"enderezo de correo electrónico.\n" +"Para confirmar o enderezo, prema no seguinte enderezo URL ou cópieo na barra " +"de enderezos do navegador.\n" +"%2$s\n" +"Se non foi vostede, pode ignorar esta pensaxe sen problema ningún." + +#. TRANS: Form instructions. +msgid "Enter your email address to register for an account." +msgstr "Insira o seu enderezo de correo electrónico para rexistrar unha conta." + +#. TRANS: Field label on form for registering an account. +msgctxt "LABEL" +msgid "E-mail address" +msgstr "Enderezo de correo electrónico" + +#. TRANS: Button text for registering an account. +#. TRANS: Button text for action to register. +msgctxt "BUTTON" +msgid "Register" +msgstr "Rexistrarse" + +#. TRANS: Form instructions. +msgid "Enter a password to confirm your new account." +msgstr "Insira un contrasinal para confirmar a nova conta." + +#. TRANS: Field label in e-mail registration form. +msgctxt "LABEL" +msgid "User name" +msgstr "Nome de usuario" + +#. TRANS: Field label. +msgid "Email address" +msgstr "Enderezo de correo electrónico" + +#. TRANS: Field label on account registration page. +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "Seis ou máis caracteres." + +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "Igual ao contrasinal anterior." + +#. 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 "" +"Acepto os termos do servizo e a política de protección de datos do sitio." + +#. 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 "" +"Xa existe un usuario con ese enderezo de correo electrónico. Pode usar a " +"ferramenta de recuperación do contrasinal para recuperar " +"un contrasinal esquecido." + +#. TRANS: Error text when trying to register with an invalid e-mail address. +msgid "Not a valid email address." +msgstr "O enderezo de correo electrónico é incorrecto." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Welcome to %s" +msgstr "Benvido a %s" + +#. TRANS: Plugin description. +msgid "Use email only for registration." +msgstr "Utilizar soamente o correo electrónico para o rexistro." diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index 5a85c9f8e4..4baf799b4f 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 11c8aac31b..3d649408e9 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 4bf8afd71b..529683fe5a 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index c03ebf9b1a..e9125af783 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index 98928636b8..a833747e8c 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index ec4af350fc..369f473e4f 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index d269f96ba9..9739bfa8dd 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ 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:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index f1855cabb6..47b8e3d853 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 884771fe78..f6b5727437 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ 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:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po index fb0f2bb6d3..20c122ddf2 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ 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:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po index e785248e28..1df8e3ed46 100644 --- a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..00ca2f299c --- /dev/null +++ b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - EmailReminder 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 - EmailReminder\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-emailreminder\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "Enviar recordatorios por correo para varias cousas." + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "Erro na base de datos ao inserir o rexistro do recordatorio." + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Recordatorio: Confirme o seu rexistro!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Segundo recordatorio: Confirme o seu rexistro!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Último recordatorio: Confirme o seu rexistro!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "Recordatorio: Está convidado a unirse a %s!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "Último recordatorio: Está convidado a unirse a %s!" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index 945257ef74..e7fca7b8ef 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po index df7f53e9a5..e164936e24 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po index 64ef50e321..ccce588a9b 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po index 4ae16765cd..af93b744d2 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index daa9e74c6a..9fb55705d3 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 7d016dcb57..49db2216a6 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 14d527b759..be6c35422e 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po index 90c9ae33a7..57f327a13a 100644 --- a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:39+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po new file mode 100644 index 0000000000..c618f2c933 --- /dev/null +++ b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - EmailSummary 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 - EmailSummary\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-emailsummary\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Subject for e-mail. +#, php-format +msgid "Your latest updates from %s" +msgstr "As súas últimas actualizacións desde %s" + +#. 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 "Actualizacións recentes desde %1$s para %2$s:" + +#. TRANS: Link text for link to conversation view. +msgid "in context" +msgstr "no contexto" + +#. 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 "" +"cambiar a configuración do correo electrónico para %2$s" + +#. TRANS: Plugin description. +msgid "Send an email summary of the inbox to users." +msgstr "" +"Enviar aos usuarios por correo electrónico un resumo da caixa de entrada." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network" +msgstr "Enviádeme un resumo periódico coas actualizacións da miña rede" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index b63282fe34..da23aab4ac 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index f6770bb33b..7fc75e1170 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 8a342b0c8b..96f5fda2c0 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index 6bdff87a19..8382dda771 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 9bf72e8e1d..03a9d6962f 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 20a95196fb..3a90f689d7 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,6 +31,16 @@ msgstr "" msgid "(1 hour)" msgstr "" +#: eventtimelist.php:98 +#, php-format +msgid "(%.1f hours)" +msgstr "" + +#: eventtimelist.php:99 +#, php-format +msgid "(%d hours)" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. #: Happening.php:125 msgid "Event already exists." diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 579ac41e38..ab2ac5d2b9 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:45+0000\n" "Language-Team: Arabic \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 235936dd8c..b15aab6dcf 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" @@ -45,7 +45,7 @@ msgstr "(1 eurvezh)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." -msgstr "An darvoud zo anezhañ dija." +msgstr "An darvoud-mañ zo anezhañ c'hoazh." #. 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. diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index f2bdcb17f7..df775443f5 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" "Language-Team: Catalan \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index 2c2be04a39..685d2b8c9b 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po index 5f42807abd..1a00745b6d 100644 --- a/plugins/Event/locale/eu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:46+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index a673f38e51..283b066797 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,13 +14,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po index 2984aaba9b..76bcfdc8dc 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:46+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -44,13 +44,13 @@ msgstr "(1 hora)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." -msgstr "" +msgstr "O evento xa existe." #. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, #. TRANS: %4$s is location, %5$s is a description. #, php-format msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" -msgstr "" +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. @@ -62,6 +62,10 @@ msgid "" "$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." @@ -69,39 +73,39 @@ msgstr "Non iniciou sesión." #. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." -msgstr "" +msgstr "Envío de formulario inesperado." #. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." -msgstr "" +msgstr "Esta acción unicamente se pode executar con AJAX." #. 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 "" +msgstr "Non existe ese RSPV." #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." -msgstr "" +msgstr "Non existe ese evento." #. 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 "" +msgstr "RSPV de %1$s en \"%2$s\"" #. TRANS: Possible status for RSVP ("please respond") item. msgid "You will attend this event." -msgstr "" +msgstr "Vai asistir a este evento." #. TRANS: Possible status for RSVP ("please respond") item. msgid "You will not attend this event." -msgstr "" +msgstr "Non vai asistir a este evento." #. TRANS: Possible status for RSVP ("please respond") item. msgid "You might attend this event." -msgstr "" +msgstr "Quizais asista a este evento." #. TRANS: Button text to cancel responding to an RSVP ("please respond") item. msgctxt "BUTTON" @@ -111,26 +115,26 @@ msgstr "Cancelar" #. TRANS: Title for RSVP ("please respond") action. msgctxt "TITLE" msgid "New RSVP" -msgstr "" +msgstr "Novo RSVP" #. 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 "Debe acceder ao sistema para responder a un evento." #. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). msgid "Unknown submit value." -msgstr "" +msgstr "Valor de envío descoñecido." #. TRANS: Page title after creating an event. #. TRANS: Page title after sending a notice. msgid "Event saved" -msgstr "" +msgstr "Evento gardado" #. TRANS: Title for RSVP ("please respond") action. msgctxt "TITLE" msgid "Cancel RSVP" -msgstr "" +msgstr "Cancelar RSVP" #. TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond"). msgid "Deleted." @@ -138,7 +142,7 @@ msgstr "Borrado." #. TRANS: Field label on form to RSVP ("please respond") for an event. msgid "RSVP:" -msgstr "" +msgstr "RSVP:" #. TRANS: Button text for RSVP ("please respond") reply to confirm attendence. msgctxt "BUTTON" @@ -217,7 +221,7 @@ msgstr "URL" #. TRANS: Field title on event form. msgid "URL for more information." -msgstr "" +msgstr "URL con máis información." #. TRANS: Field label on event form. msgctxt "LABEL" @@ -235,7 +239,7 @@ msgstr "Gardar" #. TRANS: Plugin description. msgid "Event invitations and RSVPs." -msgstr "" +msgstr "Invitacións aos eventos e RSVP." #. TRANS: Title for event application. msgctxt "TITLE" @@ -244,59 +248,59 @@ msgstr "Evento" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." -msgstr "" +msgstr "Demasiados obxectos de actividade." #. TRANS: Exception thrown when event plugin comes across a non-event type object. msgid "Wrong type for object." -msgstr "" +msgstr "Tipo incorrecto para o obxecto." #. TRANS: Exception thrown when trying to RSVP for an unknown event. msgid "RSVP for unknown event." -msgstr "" +msgstr "RSVP para un evento descoñecido." #. TRANS: Exception thrown when event plugin comes across a undefined verb. msgid "Unknown verb for events." -msgstr "" +msgstr "Verbo descoñecido para os eventos." #. TRANS: Exception thrown when event plugin comes across a unknown object type. msgid "Unknown object type." -msgstr "" +msgstr "Tipo de obxecto descoñecido." #. TRANS: Exception thrown when referring to a notice that is not an event an in event context. msgid "Unknown event notice." -msgstr "" +msgstr "Nota de evento descoñecida." #. TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond"). msgid "RSVP already exists." -msgstr "" +msgstr "RSVP xa existe." #. TRANS: Exception thrown when requesting an undefined verb for RSVP. #, php-format msgid "Unknown verb \"%s\"." -msgstr "" +msgstr "Descoñécese o verbo \"%s\"." #. TRANS: Exception thrown when requesting an undefined code for RSVP. #, php-format msgid "Unknown code \"%s\"." -msgstr "" +msgstr "Descoñécese o código \"%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 "RSVP %s non se corresponde con ningunha nota da base de datos." #. 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 "Non hai ningún perfil co ID %s." #. 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 "" +msgstr "Non hai ningún evento co ID %s." #. TRANS: HTML version of an RSVP ("please respond") status for a user. #. TRANS: %1$s is a profile URL, %2$s a profile name, @@ -306,6 +310,8 @@ msgid "" "%2$s is attending %4$s." msgstr "" +"%2$s asiste a %4$s." #. TRANS: HTML version of an RSVP ("please respond") status for a user. #. TRANS: %1$s is a profile URL, %2$s a profile name, @@ -315,6 +321,8 @@ msgid "" "%2$s is not attending " "%4$s." msgstr "" +"%2$s non asiste a %4$s." #. TRANS: HTML version of an RSVP ("please respond") status for a user. #. TRANS: %1$s is a profile URL, %2$s a profile name, @@ -324,78 +332,80 @@ msgid "" "%2$s might attend %4$s." msgstr "" +"%2$s quizais asista a " +"%4$s." #. 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 "" +msgstr "Descoñécese o código de resposta %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 evento descoñecido" #. 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 "" +msgstr "%1$s asiste a %2$s." #. 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 "" +msgstr "%1$s non asiste a %2$s." #. 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 "" +msgstr "%1$s quizais asista a %2$s." #. TRANS: Title for new event form. msgctxt "TITLE" msgid "New event" -msgstr "" +msgstr "Novo evento" #. TRANS: Client exception thrown when trying to post an event while not logged in. msgid "Must be logged in to post a event." -msgstr "" +msgstr "Cómpre estar rexistrado para publicar un evento." #. TRANS: Client exception thrown when trying to post an event without providing a title. msgid "Title required." -msgstr "" +msgstr "O título é obrigatorio." #. TRANS: Client exception thrown when trying to post an event without providing a start date. msgid "Start date required." -msgstr "" +msgstr "A data de inicio é obrigatoria." #. TRANS: Client exception thrown when trying to post an event without providing an end date. msgid "End date required." -msgstr "" +msgstr "A data de fin é obrigatoria." #. 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 "" +msgstr "Non se puido analizar a data \"%s\"." #. TRANS: Client exception thrown when trying to post an event without providing a title. msgid "Event must have a title." -msgstr "" +msgstr "O evento debe ter un título." #. TRANS: Client exception thrown when trying to post an event without providing a start time. msgid "Event must have a start time." -msgstr "" +msgstr "O evento debe ter unha data de inicio." #. TRANS: Client exception thrown when trying to post an event without providing an end time. msgid "Event must have an end time." -msgstr "" +msgstr "O evento debe ter unha data de fin." #. TRANS: Client exception thrown when trying to post an event with an invalid URL. msgid "URL must be valid." -msgstr "" +msgstr "O enderezo URL debe ser válido." #. TRANS: Field label for event description. msgid "Time:" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 8f94f00734..91ffae3687 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index e41ab66cae..7baf3adabf 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index 654ad09f64..ba502855ed 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 3bfc206e66..0c47cf7f1a 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 3fb4d01194..7c148fb972 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" "Language-Team: Portuguese \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 7e02260555..1b749992df 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 769ed76199..1e7075161d 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 461984af79..5ac344626a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 70071aba39..4c90604bc9 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 02f5add769..88a6b2b8ef 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index 99ff5d8b62..de8c6e9fc8 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -37,10 +37,12 @@ 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 "" +"S'ha produït un problema amb el vostre testimoni de sessió. Torneu-ho a " +"provar." #. TRANS: Message given submitting a form with an unknown action. msgid "Unexpected form submission." -msgstr "" +msgstr "Tramesa de formulari no esperada." #. TRANS: Success message after saving extended profile details. msgid "Details saved." diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index 2822da1bc4..29d9d4e922 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po index 5e365d2be4..8cd259ec94 100644 --- a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:52+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 9fbee7f18b..5a0a68f45a 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po new file mode 100644 index 0000000000..2afcdbd839 --- /dev/null +++ b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po @@ -0,0 +1,235 @@ +# Translation of StatusNet - ExtendedProfile 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 - ExtendedProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-extendedprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for extended profile settings. +msgid "Extended profile settings" +msgstr "Configuración do perfil estendida" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Pode actualizar a información do seu perfil persoal para que a xente o " +"coñeza mellor." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Message given submitting a form with an unknown action. +msgid "Unexpected form submission." +msgstr "Envío de formulario inesperado." + +#. TRANS: Success message after saving extended profile details. +msgid "Details saved." +msgstr "Detalles gardados." + +#. 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 "Cómpre especificar unha data para \"%s\"." + +#. TRANS: Exception thrown on incorrect data input. +#. TRANS: %1$s is a field name, %2$s is the incorrect input. +#, php-format +msgid "Invalid date entered for \"%1$s\": %2$s." +msgstr "Data incorrecta para \"%1$s\": %2$s." + +#. TRANS: Exception thrown when entering an invalid URL. +#. TRANS: %s is the invalid URL. +#, php-format +msgid "Invalid URL: %s." +msgstr "URL non válido: %s." + +#. TRANS: Server error displayed when a field could not be saved in the database. +msgid "Could not save profile details." +msgstr "Non se puideron gardar os detalles do perfil." + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "Etiqueta incorrecta: \"%s\"." + +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "Non se puido gardar o perfil." + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "Non se puideron gardar as etiquetas." + +#. TRANS: Link title for link on user profile. +msgid "Edit extended profile settings" +msgstr "Modificar a configuración do perfil estendida" + +#. TRANS: Link text for link on user profile. +msgid "Edit" +msgstr "Editar" + +#. TRANS: Plugin description. +msgid "UI extensions for additional profile fields." +msgstr "" +"Extensións da interface de usuario para os campos de perfil adicionais." + +#. TRANS: Link text on user profile page leading to extended profile page. +msgid "More details..." +msgstr "Máis detalles..." + +#. TRANS: Title for extended profile entry deletion dialog. +msgid "Confirmation Required" +msgstr "Cómpre confirmación" + +#. TRANS: Confirmation text for extended profile entry deletion dialog. +msgid "Really delete this entry?" +msgstr "Está seguro de querer borrar esta entrada?" + +#. 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 "Empresa" + +#. TRANS: Field label in extended profile (when did one start a position or education). +msgid "Start" +msgstr "Comezo" + +#. TRANS: Field label in extended profile (when did one end a position or education). +msgid "End" +msgstr "Fin" + +#. TRANS: Field value in experience area of extended profile (one still holds a position). +msgid "(Current)" +msgstr "(Actual)" + +#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). +msgid "Current" +msgstr "Actual" + +#. 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 "Institución" + +#. TRANS: Field label in extended profile for specifying an academic degree. +msgid "Degree" +msgstr "Grao" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +msgid "Description" +msgstr "Descrición" + +#. TRANS: Link description in extended profile page to add another profile element. +msgid "Add another item" +msgstr "Engadir outro elemento" + +#. TRANS: Field label for undefined field in extended profile. +#, php-format +msgid "TYPE: %s" +msgstr "TIPO: %s" + +#. TRANS: Button text for saving extended profile properties. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: . +#. TRANS: Button title for saving extended profile properties. +msgid "Save details" +msgstr "Gardar os detalles" + +#. TRANS: Field label for extended profile properties. +msgid "Phone" +msgstr "Teléfono" + +#. TRANS: Field label for extended profile properties (Instant Messaging). +msgid "IM" +msgstr "MI" + +#. TRANS: Field label for extended profile properties. +msgid "Website" +msgstr "Páxina web" + +#. TRANS: Field label for extended profile properties. +msgid "Employer" +msgstr "Empregado" + +#. TRANS: Field label for extended profile properties. +msgid "Personal" +msgstr "Persoal" + +#. TRANS: Field label for extended profile properties. +msgid "Full name" +msgstr "Nome completo" + +#. TRANS: Field label for extended profile properties. +msgid "Title" +msgstr "Título" + +#. TRANS: Field label for extended profile properties. +msgid "Manager" +msgstr "Xestor" + +#. TRANS: Field label for extended profile properties. +msgid "Location" +msgstr "Localización" + +#. TRANS: Field label for extended profile properties. +msgid "Bio" +msgstr "Biografía" + +#. TRANS: Field label for extended profile properties. +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Field label for extended profile properties. +msgid "Contact" +msgstr "Contacto" + +#. TRANS: Field label for extended profile properties. +msgid "Birthday" +msgstr "Aniversario" + +#. TRANS: Field label for extended profile properties. +msgid "Spouse's name" +msgstr "Nome do/da cónxuxe" + +#. TRANS: Field label for extended profile properties. +msgid "Kids' names" +msgstr "Nome dos fillos" + +#. TRANS: Field label for extended profile properties. +msgid "Work experience" +msgstr "Experiencia profesional" + +#. TRANS: Field label for extended profile properties. +msgid "Education" +msgstr "Educación" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 290c103435..6a16e69d09 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po index be8d2e71d0..9094a1452e 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:52+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 267b7205c1..06300bd677 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index c9efdfd4d1..9451f9e291 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index aaa55e08c0..ba9dec3e02 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ 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:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:52+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index efa859ae27..394269ec41 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:52+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 259bfc3321..b2d53356fb 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index 7df4c6cef2..a05b2b6120 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 2995e79225..fa24d79638 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index 753d5e880f..b143c5569c 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:57+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 6c1c87ebd6..1374327fdb 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 47fa3dc6cf..83f881bea0 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 9eb5ac32d5..8cf94b651c 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index c658c333b5..5cdcdd9afa 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -5,6 +5,7 @@ # Author: Crochet.david # Author: Iketsi # Author: Od1n +# Author: Peter17 # Author: Phoenamandre # -- # This file is distributed under the same license as the StatusNet package. @@ -13,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -166,7 +167,7 @@ msgid "You have disconnected from Facebook." msgstr "Vous avez été déconnecté de Facebook." msgid "Unable to authenticate you with Facebook." -msgstr "" +msgstr "Impossible de vous authentifier avec Facebook." #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index cec5dfc417..ef4d34f978 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po new file mode 100644 index 0000000000..a334adca26 --- /dev/null +++ b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po @@ -0,0 +1,374 @@ +# Translation of StatusNet - FacebookBridge 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 - FacebookBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-facebookbridge\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client error displayed when trying to login while already logged in. +msgid "Already logged in." +msgstr "Xa se identificou." + +#. TRANS: Form instructions. +msgid "Login with your Facebook Account" +msgstr "Acceder coa conta do Facebook" + +#. TRANS: Page title. +#. TRANS: Alt text for "Login with Facebook" image. +msgid "Login with Facebook" +msgstr "Acceda co Facebook" + +#. TRANS: Title for "Login with Facebook" image. +msgid "Login with Facebook." +msgstr "Acceda co Facebook." + +#. TRANS: Title for Facebook administration panel. +msgctxt "TITLE" +msgid "Facebook integration settings" +msgstr "Configuración da integración do Facebook" + +#. TRANS: Instruction for Facebook administration panel. +msgid "Facebook integration settings" +msgstr "Configuración da integración do Facebook" + +#. TRANS: Client error displayed when providing too long a Facebook application ID. +msgid "Invalid Facebook ID. Maximum length is 255 characters." +msgstr "ID do Facebook incorrecto. A extensión máxima é de 255 caracteres." + +#. TRANS: Client error displayed when providing too long a Facebook secret key. +msgid "Invalid Facebook secret. Maximum length is 255 characters." +msgstr "" +"Frase secreta do Facebook incorrecta. A extensión máxima é de 255 caracteres." + +#. TRANS: Fieldset legend. +msgid "Facebook application settings" +msgstr "Configuración da aplicación do Facebook" + +#. TRANS: Field label for Facebook application ID. +msgid "Application ID" +msgstr "ID da aplicación" + +#. TRANS: Field title for Facebook application ID. +msgid "ID of your Facebook application." +msgstr "ID da súa aplicación do Facebook." + +#. TRANS: Field label for Facebook secret key. +msgid "Secret" +msgstr "Frase secreta" + +#. TRANS: Field title for Facebook secret key. +msgid "Application secret." +msgstr "Frase secreta da aplicación." + +#. TRANS: Button text to save Facebook integration settings. +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Button title to save Facebook integration settings. +msgid "Save Facebook settings." +msgstr "Gardar a configuración do Facebook." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Page title for Facebook settings. +msgctxt "TITLE" +msgid "Facebook settings" +msgstr "Configuración do Facebook" + +#. TRANS: Instructions for Facebook settings. +msgid "Facebook settings" +msgstr "Configuración do Facebook" + +#. TRANS: Form note. User is connected to facebook. +msgid "Connected Facebook user" +msgstr "Usuario do Facebook conectado" + +#. TRANS: Checkbox label in Facebook settings. +msgid "Publish my notices to Facebook." +msgstr "Publicar as miñas notas no Facebook." + +#. TRANS: Checkbox label in Facebook settings. +msgid "Send \"@\" replies to Facebook." +msgstr "Enviar as respostas \"@\" ao Facebook." + +#. TRANS: Fieldset legend for form to disconnect from Facebook. +msgid "Disconnect my account from Facebook" +msgstr "Desconectar a miña conta do Facebook" + +#. TRANS: Notice in disconnect from Facebook form if user has no local StatusNet password. +#, php-format +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please [set " +"a password](%s) first." +msgstr "" +"Ao desconectar o Facebook será imposible acceder ao sistema! [Defina un " +"contrasinal](%s) primeiro." + +#. TRANS: Message displayed when initiating disconnect of a StatusNet user +#. TRANS: from a Facebook account. %1$s is the StatusNet site name. +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s " +"password to log in." +msgstr "" +"Manter a conta de %1$s pero desconectala do Facebook. Agora usará o seu " +"contrasinal de %1$s para acceder ao sistema." + +#. TRANS: Submit button. +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Desconectarse" + +#. TRANS: Notice in case saving of synchronisation preferences fail. +msgid "There was a problem saving your sync preferences." +msgstr "Houbo un problema ao gardar as súas preferencias de sincronización." + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +msgid "Sync preferences saved." +msgstr "Gardáronse as preferencias de sincronización." + +#. TRANS: Server error displayed when deleting the link to a Facebook account fails. +msgid "Could not delete link to Facebook." +msgstr "Non se puido borrar a ligazón co Facebook." + +#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook. +msgid "You have disconnected from Facebook." +msgstr "Desconectouse do Facebook." + +msgid "Unable to authenticate you with Facebook." +msgstr "Non foi posible facer a autenticación co 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." +msgstr "" +"Cómpre iniciar sesión no Facebook para rexistrar unha conta local a través " +"do Facebook." + +#. TRANS: Client error displayed when trying to connect to a Facebook account that is already linked +#. TRANS: in the same StatusNet site. +msgid "There is already a local account linked with that Facebook account." +msgstr "Xa hai unha conta local ligada con esa conta do Facebook." + +#. TRANS: Form validation error displayed when user has not agreed to the license. +msgid "You cannot register if you do not agree to the license." +msgstr "Non pode rexistrarse se non acepta a licenza." + +#. TRANS: Form validation error displayed when an unhandled error occurs. +msgid "An unknown error has occured." +msgstr "Houbo un erro descoñecido." + +#. TRANS: Form instructions for connecting to Facebook. +#. TRANS: %s is the site name. +#, php-format +msgid "" +"This is the first time you have logged into %s so we must connect your " +"Facebook to a local account. You can either create a new local account, or " +"connect with an existing local account." +msgstr "" +"Esta é a primeira vez que accede ao sistema de %s, de modo que debemos " +"conectar o seu Facebook cunha conta local. Pode crear unha nova conta local " +"ou ben conectar con outra conta local existente." + +#. TRANS: Page title. +msgid "Facebook Setup" +msgstr "Configuración do Facebook" + +#. TRANS: Fieldset legend. +msgid "Connection options" +msgstr "Opcións de conexión" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." + +#. TRANS: Fieldset legend. +msgid "Create new account" +msgstr "Crear unha conta nova" + +#. TRANS: Form instructions. +msgid "Create a new user with this nickname." +msgstr "Crear un novo usuario con este alcume." + +#. TRANS: Field label. +msgid "New nickname" +msgstr "Novo alcume" + +#. TRANS: Field title. +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes." + +#. TRANS: Submit button to create a new account. +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#. TRANS: Fieldset legend. +msgid "Connect existing account" +msgstr "Conectar cunha conta existente" + +#. TRANS: Form instructions. +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Se xa ten unha conta, acceda ao sistema co seu nome de usuario e contrasinal " +"para conectala coa do Facebook." + +#. TRANS: Field label. +msgid "Existing nickname" +msgstr "Alcume existente" + +#. TRANS: Field label. +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Submit button to connect a Facebook account to an existing StatusNet account. +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +msgid "Registration not allowed." +msgstr "Non se permite o rexistro." + +#. TRANS: Client error trying to register with an invalid invitation code. +msgid "Not a valid invitation code." +msgstr "O código da invitación é incorrecto." + +#. TRANS: Form validation error displayed when picking a nickname that is not allowed. +msgid "Nickname not allowed." +msgstr "Alcume non permitido." + +#. TRANS: Form validation error displayed when picking a nickname that is already in use. +msgid "Nickname already in use. Try another one." +msgstr "Ese alcume xa está en uso. Probe con outro." + +#. TRANS: Server error displayed when connecting to Facebook fails. +msgid "Error connecting user to Facebook." +msgstr "Erro ao conectar o usuario co Facebook." + +#. TRANS: Form validation error displayed when username/password combination is incorrect. +msgid "Invalid username or password." +msgstr "O nome de usuario ou contrasinal non son correctos." + +#. TRANS: Menu item for "Facebook" in administration panel. +#. TRANS: Menu item for "Facebook" in user settings. +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Menu title for "Facebook" login. +msgid "Login or register using Facebook." +msgstr "Acceda ou rexístrese mediante o Facebook." + +#. TRANS: Menu title for "Facebook" in administration panel. +msgid "Facebook integration configuration." +msgstr "Configuración da integración do Facebook." + +#. TRANS: Menu title for "Facebook" in user settings. +msgid "Facebook settings." +msgstr "Configuración do Facebook." + +#. TRANS: Plugin description. +msgid "A plugin for integrating StatusNet with Facebook." +msgstr "Un complemento para integrar StatusNet co Facebook." + +#. TRANS: E-mail subject. +msgid "Your Facebook connection has been removed" +msgstr "Eliminouse a súa conexión co Facebook" + +#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"We are sorry to inform you we are unable to publish your notice to\n" +"Facebook, and have removed the connection between your %2$s account and\n" +"Facebook.\n" +"\n" +"This may have happened because you have removed permission for %2$s\n" +"to post on your behalf, or perhaps you have deactivated your Facebook\n" +"account. You can reconnect your %2$s account to Facebook at any time by\n" +"logging in with Facebook again.\n" +"\n" +"Sincerely,\n" +"\n" +"%2$s\n" +msgstr "" +"Ola, %1$s:\n" +"\n" +"Sentimos informar de que somos incapaces de publicar a súa nota no\n" +"Facebook e de que eliminamos a conexión entre a súa conta de %2$s e o\n" +"Facebook.\n" +"\n" +"Isto puido ocorrer porque eliminou os permisos que %2$s tiña\n" +"para publicar no seu nome ou quizais desactivou a súa conta do\n" +"Facebook. Pode volver conectar a súa conta de %2$s coa do Facebook en\n" +"calquera momento iniciando sesión no Facebook de novo.\n" +"\n" +"Atentamente,\n" +"\n" +"%2$s\n" + +#. TRANS: E-mail subject. %s is the StatusNet sitename. +#, php-format +msgid "Contact the %s administrator to retrieve your account" +msgstr "Póñase en contacto co administrador de %s para recuperar a súa conta" + +#. TRANS: E-mail body. %1$s is a username, +#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail address. +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"We have noticed you have deauthorized the Facebook connection for your\n" +"%2$s account. You have not set a password for your %2$s account yet, so\n" +"you will not be able to login. If you wish to continue using your %2$s\n" +"account, please contact the site administrator (%3$s) to set a password.\n" +"\n" +"Sincerely,\n" +"\n" +"%2$s\n" +msgstr "" +"Ola, %1$s:\n" +"\n" +"Decatámonos de que desautorizou a conexión co Facebook para a súa\n" +"conta de %2$s. Aínda non definiu un contrasinal para a conta de %2$s,\n" +"de modo que non poderá iniciar sesión. Se quere seguir usando a súa conta\n" +"de %2$s, póñase en contacto cun administrador (%3$s) para establecer un " +"contrasinal.\n" +"\n" +"Atentamente,\n" +"\n" +"%2$s\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index 0138206f95..f9d1a32505 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 4d946975da..8768e04883 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" "Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mg\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index d0ade44de5..fb92ff64e8 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 44aa49a8f7..1a32f026ea 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index 9eb99a02c1..ac85f8b83f 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index ca69a57cfc..a0854eb656 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index cdd8dd281b..50b0e4a6ca 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 50f597b53c..35748d4998 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 34fea4c5a7..bb17d5312c 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 8a073849f5..30e7f5d980 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:44: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 53141d5686..be6aeda6fe 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index edaa9c716a..009fc556c6 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 7bb8ae5531..59d625480f 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po index 6673456074..ae928d1d32 100644 --- a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index d7ade9c5c8..bedf8f49f2 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index ce904ad1f3..4ed87965cc 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index d2e19d384d..c3e01022df 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index d5ce29b2ff..f978ede839 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index e070d7a775..e735693d19 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 2d03ac4848..1245fcb631 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 9f91095b77..16b0d8aec0 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 9ed29f4b6f..d7eea51a2d 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:00+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index fe3c86e5ea..8ad74f694a 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index 865e52c821..f7af467373 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 0f2543acc0..9a4445ecb7 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index b9cfe6f194..1ed1c7900c 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:01+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index 0bc2989693..689389088b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 723db99ea7..ba56843af3 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po index ccd8dc99b2..7e1d13737f 100644 --- a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 3d01ac3dc8..a816b3ebaf 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po index a79ac0487f..70c5a05f20 100644 --- a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:02+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 83625f91af..84c20aa8d4 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:02+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index d50cf989b3..e9faf7d64a 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po index 58d7809882..cdcc64cb95 100644 --- a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index b644b313fc..5c74059be8 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:03+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index a61157d947..f341cfb742 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 923b7ab845..5f3b371e2d 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 3c0bccd069..c210659d8e 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 22189236b5..bfab2e8a4b 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 1f20260d5b..d40a9b681a 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index f2c1e5382c..5dcfe96294 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 532f019c05..1cc9eb634f 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 92ac2935b9..50aa6cbe35 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 cb9c274b84..2c41b3032a 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po index 7f7f81b644..0f53d70010 100644 --- a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index d0c13f3f42..45262af9ce 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 50fe7fd641..628d4a8283 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index fa4c294c94..8e5dbb01bb 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po index 92d2d89a54..b7bccb4eb1 100644 --- a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 9b9044bac5..1a3b148773 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 7202b7f140..bda102ad9e 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 900983d6e3..28189e9811 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index b1420676c8..de025b1f2c 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 0850e4dd4b..01798a512a 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index 62fdf709fd..4816da4918 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index c4978554bd..469a490d4f 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:05+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 709bd34966..218ff2cb07 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index d63e9d1ee5..cba90f9ba4 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 9ee56ac11a..6334097497 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 dbc4a57faa..94c6f63d38 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index db54d2c0fa..85f1864731 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 2924bd6cda..42764fc66e 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:07+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index 01e62647ff..883402f79c 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po index daa754d5d6..da2fcabf7b 100644 --- a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index 8b7a8848bb..5cff29713f 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 112a266dbe..eaf458a9d2 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po index 23f3f9cbaa..a59c313e5b 100644 --- a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:07+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 3040aba7cd..c8fbee6c64 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 7b67870c46..b11181f677 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index c0bdf827af..60eb75ea1e 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index ca2f490b40..8e8844eb70 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index 3fab294717..d00f9c4b1c 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ 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:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 0bfcf09029..0d7a2c3607 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 9c93853c8f..6115cb83c5 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:08+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index a816bdce6f..722acbdbc6 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 60707b7598..29223de35d 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index a1cd9f8871..8ebdc2c4e2 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 7cf4fc30c8..7f1f5a6ec0 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 02809a92db..4f7bde930f 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 6c1c13d17d..ee15d1f966 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 2912a9b089..d09e13f003 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index 75acab9f95..b9e2a36f32 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po index f6d223d12e..ef07a82377 100644 --- a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:06+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 0b0321d888..005725762c 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 6c83048192..f5d5abd95f 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..151adcae44 --- /dev/null +++ b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po @@ -0,0 +1,52 @@ +# Translation of StatusNet - Geonames 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 - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Sáltase debido ao excesivo tempo de espera por parte do servizo 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 "Código de erro HTTP %s." + +#. TRANS: Exception thrown when a geo names service returns an empty body. +msgid "Empty HTTP body in response." +msgstr "Corpo HTTP baleiro na 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 "Erro #%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 "" +"Usa o servizo Geonames para obter nomes " +"xeográficos lexibles polas persoas baseándose nos pares de latitudes e " +"lonxitudes dados polo usuario." diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index dbf756c11a..48db925543 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index c384114b50..739129d35e 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index e613ac3692..808591a63b 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index f11bd7f4ad..d17618d28a 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 8aa6965e97..4f24a8e900 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index e13ed04eb0..074af6682c 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index d4a6b1d24a..b99643fa4a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 e02f55ebe9..70917800cd 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po index 83ceb041c1..db0732532c 100644 --- a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:09+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 4f32b659c4..fd960123f0 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 2cd41dab78..7ae586a0ef 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index e2ddca0842..6b97bd4d2e 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:09+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index d4543f960d..29bdeb04d5 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po index ec65370ad6..af580affa1 100644 --- a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 12bde24df2..8e043ea459 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 4533315330..3a95595de1 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index d977a52665..66b6e44b5c 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index d78b0588f2..062ae5d83b 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 9675cf97a6..87e5642309 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index f7861f98b2..8c30f04f9f 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 4a129fd8b6..8966dfada9 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 7326a9c974..801a2a760b 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 6aa3993e20..a28f9f2531 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po index da7e8a2233..c44fc9f55a 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:10+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 1bd9b55e7a..0459873761 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 9158a316ae..9396ad1211 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 29991ead6f..982f36b24c 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index f8943b9c98..aed9b035c4 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 b8ad04bc6f..0aafe8b3c7 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:11+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index ebdd6a051f..4bb9729ab6 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index afcfec9bac..8c731df578 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po index 343bcdb843..4a884d7cea 100644 --- a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:11+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 1033f1768f..a891a833d4 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po index af3a7bc2d6..d7a727441b 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index f661c7958f..1a96293913 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 819808a44a..554bf4c94f 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index ca00d72bdb..7f2ce19f56 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 363a20955a..f30baf3a33 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 04cc80b303..407a5d8774 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:11+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index ee821d8fd6..5679e9540a 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po index 0d864b6414..b6c2942285 100644 --- a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 1ca5b442bb..736ca77b55 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index ae347eec22..3e166f89b0 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index f54ad1c881..7b23b22a3a 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index b4a22a1525..ec868a3468 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 3d0c8c58a2..e921de28f3 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index dcd5d9b1be..12a1a63d5c 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 06720ad229..25775383b6 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index bf7a589204..8ecff1e6a6 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index def2a5fcfd..fff576a975 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:13+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po index 46612e4205..4455a9e6cf 100644 --- a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:13+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 7386f4a41b..b6bc094b7b 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po index 1dd12d7343..f91fab7bc4 100644 --- a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po @@ -1,5 +1,5 @@ # Translation of StatusNet - GroupFavorited to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,45 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:07+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:40:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); 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 (r105064); 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-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: %s is a group name. -#: groupfavoritedaction.php:48 -#, php-format -msgid "Popular posts in %s group" -msgstr "" - -#. TRANS: %1$s is a group name, %2$s is a group number. -#: groupfavoritedaction.php:51 -#, php-format -msgid "Popular posts in %1$s group, page %2$d" -msgstr "" - #. TRANS: Menu item in the group navigation page. -#: GroupFavoritedPlugin.php:72 msgctxt "MENU" msgid "Popular" msgstr "Populares" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. -#: GroupFavoritedPlugin.php:75 #, php-format msgctxt "TOOLTIP" msgid "Popular notices in %s group" -msgstr "" +msgstr "Notas populares no grupo %s" #. TRANS: Plugin description. -#: GroupFavoritedPlugin.php:99 msgid "This plugin adds a menu item for popular notices in groups." msgstr "" +"Este complemento engade un elemento de menú para as notas populares nos " +"grupos." + +#. TRANS: %s is a group name. +#, php-format +msgid "Popular posts in %s group" +msgstr "Mensaxes populares no grupo %s" + +#. 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 "Mensaxes populares no grupo %1$s, páxina %2$d" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 8f719f69da..f0a4d13731 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 4fb94228dd..5a45255666 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index d5b5fff25a..fbe2cf2307 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index 893d7e84cf..c5c200ca69 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 0ce1312275..cdda96c61a 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 392fab5e1b..b309468fe3 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 315356656d..77f922c983 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index 45a1d178b1..f5c703b0d8 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 5b7fb96cb8..0abbfc7a60 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index c1b28d9edc..7d9f9ea36a 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index c54c471a1f..051b3f0938 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po index 242e825833..5e87ec83fb 100644 --- a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:18+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index eeca4a40d6..6ff9fc1106 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po new file mode 100644 index 0000000000..c63d6cd28c --- /dev/null +++ b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po @@ -0,0 +1,293 @@ +# Translation of StatusNet - GroupPrivateMessage 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 - GroupPrivateMessage\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Cómpre acceder ao sistema." + +#. 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 "O usuario %s non ten permiso para enviar mensaxes privadas." + +#. 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 "Non existe tal grupo." + +#. TRANS: Title after sending a private group message. +msgid "Message sent" +msgstr "Mensaxe enviada" + +#. TRANS: Succes text after sending a direct message to group %s. +#, php-format +msgid "Direct message to %s sent." +msgstr "Enviouse a mensaxe directa a %s." + +#. TRANS: Title of form for new private group message. +#, php-format +msgid "New message to group %s" +msgstr "Nova mensaxe ao grupo %s" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Nova mensaxe privada de %1$s ao grupo %2$s" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" +"%1$s (%2$s) envioulle unha mensaxe privada ao grupo %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"Pode responder á mensaxe aquí:\n" +"\n" +"%5$s\n" +"\n" +"Non responda a este correo electrónico, non lle chegará ao remitente.\n" +"\n" +"Atentamente,\n" +"%6$s" + +#. TRANS: Menu item in group page. +msgctxt "MENU" +msgid "Inbox" +msgstr "Caixa de entrada" + +#. TRANS: Menu title in group page. +msgid "Private messages for this group." +msgstr "Mensaxes privadas para este grupo." + +#. TRANS: Dropdown label in group settings page for if group allows private messages. +msgid "Private messages" +msgstr "Mensaxes privadas" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Sometimes" +msgstr "Ás veces" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Always" +msgstr "Sempre" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Never" +msgstr "Nunca" + +#. TRANS: Dropdown title in group settings page for if group allows private messages. +msgid "Whether to allow private messages to this group." +msgstr "Permitir ou non as mensaxes privadas para este grupo." + +#. TRANS: Dropdown label in group settings page for who can send private messages to the group. +msgid "Private senders" +msgstr "Remitentes privados" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Everyone" +msgstr "Todos" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Member" +msgstr "Membro" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Admin" +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 "Quen pode enviar mensaxes privadas ao grupo." + +#. TRANS: Title for action in group actions list. +msgid "Send a direct message to this group." +msgstr "Enviarlle unha mensaxe directa a este grupo." + +#. TRANS: Link text for action in group actions list to send a private message to a group. +msgctxt "LINKTEXT" +msgid "Message" +msgstr "Mensaxe" + +#. TRANS: Client exception thrown when a private group message has to be forced. +msgid "Forced notice to private group message." +msgstr "Nota obrigada á mensaxe de grupo privado." + +#. TRANS: Indicator on the group page that the group is (essentially) private. +msgid "Private" +msgstr "Privado" + +#. TRANS: Plugin description. +msgid "Allow posting private messages to groups." +msgstr "Permitir a publicación de mensaxes privadas nos grupos." + +#. TRANS: Client exception thrown when trying to view group inbox while not logged in. +msgid "Only for logged-in users." +msgstr "Unicamente para os usuarios rexistrados." + +#. TRANS: Client exception thrown when trying to view group inbox while not a member. +msgid "Only for members." +msgstr "Unicamente para os membros." + +#. TRANS: Text of group inbox if no private messages were sent to it. +msgid "This group has not received any private messages." +msgstr "Este grupo non recibiu mensaxe privada ningunha." + +#. TRANS: Title of inbox for group %s. +#, php-format +msgid "%s group inbox" +msgstr "Caixa de entrada do grupo %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 "Caixa de entrada do grupo %1$s, páxina %2$d" + +#. TRANS: Instructions for user inbox page. +msgid "" +"This is the group inbox, which lists all incoming private messages for this " +"group." +msgstr "" +"Esta é a caixa de entrada do grupo, que lista todas as mensaxes privadas " +"entrantes enviadas a este grupo." + +#. TRANS: Form legend for sending private message to group %s. +#, php-format +msgid "Message to %s" +msgstr "Mensaxe a %s" + +#. TRANS: Field label for private group message to group %s. +#, php-format +msgid "Direct message to %s" +msgstr "Mensaxe directa a %s" + +#. TRANS: Indicator for number of chatacters still available for notice. +msgid "Available characters" +msgstr "Caracteres dispoñibles" + +#. TRANS: Send button text for sending private group notice. +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + +#. 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 "O grupo %s non permite as mensaxes privadas." + +#. 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 "O usuario %1$s está bloqueado no grupo %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 "O usuario %1$s non pertence ao grupo %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 "O usuario %1$s non é un administrador o grupo %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 "Configuración de protección de datos descoñecida para o grupo %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] "" +"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." +msgstr[1] "" +"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." + +#. TRANS: Exception thrown when trying to send group private message to a non-existing group. +msgid "No group for group message." +msgstr "Non hai grupo ningún para a mensaxe de grupo." + +#. TRANS: Exception thrown when trying to send group private message without having a sender. +msgid "No sender for group message." +msgstr "Non hai remitente ningún para a mensaxe de grupo." + +#. 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 "Unicamente os usuarios rexistrados poden ler as mensaxes privadas." + +#. TRANS: Client exception thrown when trying to view a non-existing group private message. +msgid "No such message." +msgstr "Non se atopou esa mensaxe." + +#. TRANS: Server exception thrown when trying to view group private messages for a non-exsting group. +msgid "Group not found." +msgstr "Non se atopou o grupo." + +#. TRANS: Client exception thrown when trying to view a group private message without being a group member. +msgid "Cannot read message." +msgstr "Non se puido ler a mensaxe." + +#. TRANS: Server exception thrown when trying to view a group private message without a sender. +msgid "No sender found." +msgstr "Non se atopou ningún remitente." + +#. 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 "Mensaxe de %1$s ao grupo %2$s o %3$s" + +#. TRANS: Succes message after sending private group message to group %s. +#, php-format +msgid "Direct message to group %s sent." +msgstr "Enviouse a mensaxe directa ao grupo %s." diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index cd630a7b57..8f9dcd0c57 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index dc8f91c58b..1e6663474f 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 38c1b58eee..b5b1c45e18 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index 3d0a9af5ec..199b3bb6d4 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index a808f9340e..72a60708a6 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index c5db23e091..88cb836fd4 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:06+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index b7f06e0f11..af41664261 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 cb6c8ca46a..91177b6428 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po index 8995b13690..f6e1140503 100644 --- a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:20+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index e3d66ae781..f019ed2f28 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po index 49c3f131ce..2251fa37f7 100644 --- a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:20+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 9ddac3625a..202b6c4c81 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..96d0c47615 --- /dev/null +++ b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - Imap 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 - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: E-mail subject in case of an error. +msgid "Error" +msgstr "Erro" + +#. 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 debería crearse mediante o seu construtor e non utilizando o " +"método estático \"get()\"." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A mailbox must be specified." +msgstr "Cómpre especificar unha caixa de correos." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A user must be specified." +msgstr "Cómpre especificar un usuario." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A password must be specified." +msgstr "Cómpre especificar un contrasinal." + +#. 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 "Cómpre especificar un poll_frequency." + +#. TRANS: Plugin description. +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"O complemento IMAP permite a StatusNet comprobar se as caixas de entrada POP " +"ou IMAP posúen novas mensaxes que conteñan publicacións de usuario." diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index defec312b7..0780a7d2b6 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 1a4d9dbc93..97745753a8 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index f74b7b3113..a62c43feb9 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 9fa0c77813..47c94fdb4c 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index c5133c2455..21e5b7aeef 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 91894b2fd1..35b09fe691 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index c5cffbe039..051924b808 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index f95a68b420..1932ace4b8 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index 3dc2ddc918..2eb5245833 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 318efc66b5..e145efe489 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 8faaec15cf..025267f5fd 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 367a24447d..c14f9019fe 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po index b29f5ba533..a9bca1a473 100644 --- a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 2510e9d572..8566fa0957 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index a0ae1516d6..0a526ccadf 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index e2264a90ee..8dc6f6477c 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 5edfb141af..a97b425637 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index ca0f9ae7fa..25d5aa5c7d 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index 4332464eb0..f27b167fab 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index 8a1ab1e30b..95d932b17d 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index ac5f0be567..86ef90dea0 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index 2a5020cf89..c15167f3f5 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 2b8d487c56..2310888e14 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 15f79655c9..e327ba52ad 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 384eca4319..e1187b6dcd 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po index 5b7f7c019e..17c502ceac 100644 --- a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index 5d8e8b1d9e..dc1a67489d 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po index 842381eae4..3171685151 100644 --- a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 2b4ceb06e4..9968d8049f 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 916c2a21ab..58e57735ec 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index e2ef2f8b03..393c4e15aa 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:21+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 601bc7401b..cbd3c61e44 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:22+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 064a73d1ae..82f8fcdc17 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index a805fed203..ac3437266a 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 9333190c7b..d235598959 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 1fbcebc859..06bbfcd131 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index fe812e9bde..3fae91448a 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index 56421ca5e3..c32281c5b0 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 72d146ceb5..a44c662b13 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 55f75e87cc..74ac2c2114 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index a6f243f582..84d441df78 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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/ca/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po new file mode 100644 index 0000000000..4202d75e26 --- /dev/null +++ b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po @@ -0,0 +1,85 @@ +# Translation of StatusNet - Irc 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 - Irc\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-irc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Service name for IRC. +msgid "IRC" +msgstr "IRC" + +#. TRANS: Body text for e-mail confirmation message for IRC. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the plugin display name ("IRC"), %4$s is the confirm address URL. +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" +"L'usuari «%1$s» a %2$s diu que el vostre nom %3$s li pertany. Si això fos " +"veritat, podeu confirmar-ho clicant a l'URL: %4$s . (Si no podeu clicar-hi, " +"copieu-la i enganxeu-la a la barra d'ubicació del vostre navegador). Si no " +"fóssiu aquest usuari, o bé si no heu sol·licitat aquesta confirmació, " +"simplement ignoreu el missatge." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a host." +msgstr "Heu d'especificar un servidor central." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a username." +msgstr "Heu d'especificar un nom d'usuari." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a \"real name\"." +msgstr "Heu d'especificar un «nom real»." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a nickname." +msgstr "Heu d'especificar un sobrenom." + +#. TRANS: Plugin description. +msgid "" +"The IRC plugin allows users to send and receive notices over an IRC network." +msgstr "" +"El connector IRC permet als usuaris enviar i rebre avisos des d'una xarxa " +"IRC." + +#. TRANS: Exception thrown when an IRC attempts count could not be updated. +#. TRANS: %d is the object ID for which the count could not be updated. +#, php-format +msgid "Could not increment attempts count for %d." +msgstr "" + +#. TRANS: Message given when using an unregistered IRC nickname. +msgid "Your nickname is not registered so IRC connectivity cannot be enabled." +msgstr "" + +#. TRANS: Server error thrown on database error when deleting IRC nickname confirmation. +msgid "Could not delete confirmation." +msgstr "No s'ha pogut eliminar la confirmació." + +#. TRANS: Server exception thrown when an IRC waiting queue item could not be added to the database. +msgid "Database error inserting IRC waiting queue item." +msgstr "" diff --git a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index 7d55eafcd7..1822e71b25 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 0f0f8b9bd7..7cf42efaad 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po new file mode 100644 index 0000000000..16a6b2e06c --- /dev/null +++ b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po @@ -0,0 +1,87 @@ +# Translation of StatusNet - Irc 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 - Irc\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-irc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Service name for IRC. +msgid "IRC" +msgstr "IRC" + +#. TRANS: Body text for e-mail confirmation message for IRC. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the plugin display name ("IRC"), %4$s is the confirm address URL. +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" +"O usuario \"%1$s\" de %2$s dixo que o pseudónimo %3$s pertence a el ou ela. " +"Se é certo, pódeo confirmar premendo neste enderezo URL: %4$s. (Se non pode " +"premer nel, copie e pegue o enderezo na barra de enderezos do navegador.) Se " +"ese usuario non é vostede ou se non solicitou esta confirmación, ignore esta " +"mensaxe." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a host." +msgstr "Cómpre especificar un provedor de hospedaxe." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a username." +msgstr "Cómpre especificar un nome de usuario." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a \"real name\"." +msgstr "Cómpre especificar un nome real." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a nickname." +msgstr "Cómpre especificar un alcume." + +#. TRANS: Plugin description. +msgid "" +"The IRC plugin allows users to send and receive notices over an IRC network." +msgstr "" +"O complemento IRC permite aos usuarios enviar e recibir mensaxes desde a " +"rede de IRC." + +#. TRANS: Exception thrown when an IRC attempts count could not be updated. +#. TRANS: %d is the object ID for which the count could not be updated. +#, php-format +msgid "Could not increment attempts count for %d." +msgstr "Non se puido incrementar o número de intentos de %d." + +#. TRANS: Message given when using an unregistered IRC nickname. +msgid "Your nickname is not registered so IRC connectivity cannot be enabled." +msgstr "" +"O seu alcume non está rexistrado, de modo que non se pode activar a " +"conectividade IRC." + +#. TRANS: Server error thrown on database error when deleting IRC nickname confirmation. +msgid "Could not delete confirmation." +msgstr "Non se puido borrar a confirmación." + +#. TRANS: Server exception thrown when an IRC waiting queue item could not be added to the database. +msgid "Database error inserting IRC waiting queue item." +msgstr "Erro na base de datos ao inserir un elemento na cola de espera de IRC." diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 12f0373579..5e77752fb0 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 5a4a15102d..b793654a90 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index eaa7037980..d46369adbb 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 00f571b635..c50f4bb0b1 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index 85ef8366d1..6fc298b475 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 648ea9d6ff..ff452b20c0 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 4d10d4ba40..1cbbe22199 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 0bd83290e4..a421e95272 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index db1ec8cb26..5ac61d347b 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..57ab956391 --- /dev/null +++ b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,48 @@ +# Translation of StatusNet - LdapAuthentication 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 - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:26+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:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. +msgid "You must specify a nickname attribute." +msgstr "Cómpre especificar o atributo do alcume." + +#. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. +msgid "" +"If password_changeable is set, the password attribute and password_encoding " +"must also be specified." +msgstr "" +"Se \"password_changeable\" está definido, cómpre especificar o atributo do " +"contrasinal e \"password_encoding\"." + +#. TRANS: Instructions for LDAP authentication. +msgid "Do you have an LDAP account? Use your standard username and password." +msgstr "" +"Ten unha conta LDAP? Use o seu nome de usuario e o seu contrasinal estándar." + +#. TRANS: Plugin description. +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"O complemento de autenticación LDAP permite a StatusNet manexar a " +"autenticación a través do LDAP." diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index c4abe5224c..eb13acdbdc 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index e5a694c8f1..171ac7a7ba 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 77afc71e32..2cfd90757a 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index a759558194..6b93522ce6 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index a8e6ef3cbd..93116714ff 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 5484fb934d..70d3bce60c 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 099c9a4cca..54b5df15f7 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 3a32816b74..678b627187 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..7330a82ccc --- /dev/null +++ b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - LdapAuthorization 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 - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. +msgid "" +"provider_name must be set. Use the provider_name from the LDAP " +"Authentication plugin." +msgstr "" +"Cómpre definir \"provider_name\". Use o atributo \"provider_name\" do " +"complemento de autenticación LDAP." + +#. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. +msgid "uniqueMember_attribute must be set." +msgstr "Cómpre definir \"uniqueMember_attribute\"." + +#. TRANS: Plugin description. +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"O complemento de autenticación LDAP permite a StatusNet manexar a " +"autorización a través do LDAP." diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 4cb85e5bc4..97dcb3eb73 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 068add3ddd..62c506323b 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 5d9bc659f7..2dddb75810 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 0183b17499..efa20b52cd 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 82af14281a..7072b5df38 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index 2c9f43093f..6c6deef83b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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/ca/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po new file mode 100644 index 0000000000..4b436510dd --- /dev/null +++ b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - LdapCommon 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 - LdapCommon\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-ldapcommon\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "A host must be specified." +msgstr "Cal especificar un servidor central." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "\"basedn\" must be specified." +msgstr "Cal especificar «basedn»." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "The username attribute must be set." +msgstr "" + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s" +msgstr "No s'ha pogut connectar amb el servidor LDAP: %s" + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s." +msgstr "No s'ha pogut connectar amb el servidor LDAP: %s." diff --git a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index 9eba540cfe..8d2606d2f9 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index 89a74956b3..9b04e99bfe 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po new file mode 100644 index 0000000000..827cc41d92 --- /dev/null +++ b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - LdapCommon 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 - LdapCommon\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:28+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 (r105064); 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-ldapcommon\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "A host must be specified." +msgstr "Cómpre especificar un provedor de hospedaxe." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "\"basedn\" must be specified." +msgstr "Cómpre especificar \"basedn\"." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "The username attribute must be set." +msgstr "Cómpre definir o atributo \"username\"." + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s" +msgstr "Non se puido conectar co servidor LDAP: %s" + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s." +msgstr "Non se puido conectar co servidor LDAP: %s." diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index bab2db99eb..d28062d3f8 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index ea382afb8a..d1baed6df5 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index 8c303fee72..cea414eb89 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index 8ea35de2bc..46849f50f2 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index a9668ced5e..5dd19c055d 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 89ad9f9cad..d9259f5fc3 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 4247e447b3..dbc28bc248 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -31,3 +31,4 @@ msgstr "S'ha d'especificar un URL de servei (serviceUrl)" #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" +"Fa servir el servei d'escurçament d'URL %1$s." diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index ab635067b6..a6f46edd52 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po index 5ed9eb7bd2..2b9081bf20 100644 --- a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index dcf901e353..c127dbf62d 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po index 5e2e91ab21..89326b38b6 100644 --- a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 627179a8e5..feaef2fb82 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 5eec68a77a..70b7890b50 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 6fd436eecd..a381dfded6 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index f7921e679e..90906abc07 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 79bee23600..35571872b5 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 7fd296cf31..67844e28ff 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index 003b389c77..498619397d 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 97d6923cae..83f761d3c6 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index 074c99aa53..687ffda957 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:30+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index d541ceadd6..249e9a93a9 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index f85c126fb3..f024ae60cd 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index 114d642f6a..bcdfc8763e 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 71e677d466..7f00b9e29b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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/ca/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po new file mode 100644 index 0000000000..8c926cf510 --- /dev/null +++ b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - LinkPreview 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 - LinkPreview\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-linkpreview\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "UI extension for previewing thumbnails from links." +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 "" +"S'ha produït un problema amb el vostre testimoni de sessió. Torneu-ho a " +"provar." + +#. TRANS: Client exception thrown when requesting a different format than JSON. +msgid "Invalid format; only JSON supported." +msgstr "" + +#. TRANS: Client exception thrown when not providing a valid URL. +msgid "Invalid URL." +msgstr "URL invàlid." diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index 61875a081b..551b2c628c 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index b1d8eeff78..0bec617f99 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po new file mode 100644 index 0000000000..f7747a6ada --- /dev/null +++ b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - LinkPreview 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 - LinkPreview\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-linkpreview\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "UI extension for previewing thumbnails from links." +msgstr "" +"Extensión de interface de usuario para ollar unha vista previa das " +"miniaturas desde as ligazóns." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Client exception thrown when requesting a different format than JSON. +msgid "Invalid format; only JSON supported." +msgstr "Formato inválido; unicamente está soportado JSON." + +#. TRANS: Client exception thrown when not providing a valid URL. +msgid "Invalid URL." +msgstr "Enderezo URL inválido." diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index b107649c2d..8936f600e2 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index 15005d8a94..ef3be59847 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index 4035346b45..f6fc23cebb 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index 808edfeed6..746ab1439a 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index 9cf3711a4d..f4f17f4a45 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index e4e345e550..2e07a97ddf 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index e6174f9f72..c6ff51c826 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 29b9c2b559..511c7986c8 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index 7dfd7d5d1d..16d4260215 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 66463a2620..4567f6e3bc 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 7e4a2d936c..782dbe3841 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index d32a234089..f15560abd7 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index ab2ebd61ba..d820a1db9a 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po index efd8144218..15c244d9ea 100644 --- a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 59b434b384..89e718401c 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 1ed8794694..bb9873c090 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 4b25a6f5dd..000675609d 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 0e89883980..ff2214e8c8 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 695fb935d0..b85a240ace 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 7b8288a183..b6fdcd8ad3 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 16fa24f4a0..59e41ec5d1 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index d2fe7db657..4d749f0e02 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 53a59bd027..e5118b0658 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 068492c209..174b2a37a6 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index c72b82388d..646d68dc83 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index bf960c72eb..6f116bc392 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 4f9b24c581..62ba09ce1d 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index ed73a3cea6..fc4b3b5da5 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 0b5e571138..6a89ff4f3c 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po index 83fe27bbcc..0961352d47 100644 --- a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 68521aceb1..5541882ce9 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 08d0de364f..43112966e0 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 0dba2f39dd..75771a7000 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index cdb8e0c0ea..c65555c297 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 5d26b71cd4..e7a9ce5fa4 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index c1ba02bd87..82f5a161dc 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index 96c92c6f88..ce44c85eed 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index f4a2e3650a..2eadff5201 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 630cbe3dd2..7b0cd879ad 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 3db4d4d0b0..10829765c0 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 7af311eb7b..45c55695fb 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index 49763eb4b6..2fc6ccbc05 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index c1b584319b..59c561aece 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index fa150dfb28..82dfb1beb4 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 75d98ff9ec..d1aa8443e6 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 608ac84877..4d60502f50 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index cfe5f6d08c..c335998be6 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -35,18 +35,20 @@ msgid "" "Show maps of users' and friends' notices with Mapstraction." msgstr "" +"Mostra mapas das notas dos usuarios e amigos con Mapstraction." #. TRANS: Page title. #. TRANS: %s is a user nickname. #, php-format msgid "%s friends map" -msgstr "" +msgstr "Mapa dos amigos de %s" #. TRANS: Page title. #. 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 dos amigos de %1$s, páxina %2$d" #. TRANS: Client error displayed when referring to a non-existing user. msgid "No such user." @@ -60,4 +62,4 @@ msgstr "O usuario non ten perfil." #. TRANS: %s is a user name. #, php-format msgid "%s map" -msgstr "" +msgstr "Mapa de %s" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index e9a15d776b..22e7e47299 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:36+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 48e4baab47..1bad8bad2e 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index 62df5808dd..1e27eea6f3 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index f7889debcd..7572549d3e 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index e3147ab2d8..47bc721314 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index fe12a24941..db99af3a25 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 14da4b0cae..f9185bd9aa 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index cd4a09a06a..4c1457e59d 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 89a017a449..e18367d338 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ta\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 7586a6e00d..9ecb73681e 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index e989768ab2..26f7f48a93 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 174d232f56..b81ebc0a36 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 6892d3ef6b..9fe5946754 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 56463a63bb..425dbfb98e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 176092f551..82e383afde 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 77f57c4478..4becfa4081 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index d9009dadbc..3321187fa2 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 108b3f39e9..72aba3e0f3 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po index 990720e58f..d976e9abab 100644 --- a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 57b7c1a51e..c363b16582 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 1cd39c8215..ff5408926f 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 1248a6546a..3698efcd02 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 318f2c3159..141267112b 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 8f8e3b7852..f400e062f2 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index 5e3e851ee9..df308f4e39 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index 69f0d59f66..e3169323a6 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index ad308e0802..d9492653f2 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po index 7d6766280c..2a871c2f59 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 834b32d910..aa3862a0e9 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index e44188a693..099ec4faf9 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 0cb3f75ad7..7c604d50b0 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 7e40015d83..79722afabb 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 3ac84e76cf..f0541db6dc 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index 0ffed98e48..2160da5783 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 03e6f3e653..5fa0086c5f 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:40+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index c48a1cfa8b..ff9dec8fb9 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po index 4b8e8b0d7e..290098c339 100644 --- a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index ed44307515..57c1dab07e 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 85f767e8b1..38c529750f 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index da82d79946..d9d2395571 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index e3e385226a..baaf0b556d 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:40+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index 07c3a00bd3..ad7828d1cd 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index eae309593b..8d7210f821 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 090988712b..ae530c202f 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index 41d62c66ab..f0872abb22 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index ae5a79fb08..b6cdb387b4 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po index d17dc3a72e..6a82347260 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 407459c77e..9c98c0d40d 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 2836ddd64d..83e10861aa 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index bbbec1225a..ae2211cce1 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 92a2e63cc4..abed25aa7f 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 2608a7b017..8d2c8260a0 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index f723f42eac..3becc80db8 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..9aa5c9e4ef --- /dev/null +++ b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor 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 - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#, php-format +msgid "Could not connect to %1$s on %2$s." +msgstr "Non se puido conectar a %1$s en %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#, php-format +msgid "Error adding meteor message \"%s\"." +msgstr "Erro ao engadir unha mensaxe de Meteor \"%s\"." + +#. TRANS: Plugin description. +msgid "Plugin to do \"real time\" updates using Meteor." +msgstr "" +"Complemento para facer actualizacións \"en tempo real\" mediante Meteor." diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index ac02ac8930..4dd357ef4b 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index f0d6622059..7c7eb1fdd2 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 18b322b978..3ddd43f0fe 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 55a1365fcd..ed1585ada7 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 4a3a3df76c..018bdebb14 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 76d11f19fb..3e71a8b551 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 120cbf43db..1d724b5b7d 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 b00a368634..8d6f6b25dd 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index c9acd3eca9..8154c9557c 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..d22d78ee0b --- /dev/null +++ b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Minify 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 - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-minify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"O complemento Minify minimiza o CSS e o JavaScript de StatusNet, eliminando " +"os espazos en branco e os comentarios." + +#. TRANS: Client error displayed when not providing a valid path in parameter "f". +msgid "The parameter \"f\" is not a valid path." +msgstr "O parámetro \"f\" non é unha ruta válida." + +#. TRANS: Client error displayed when not providing parameter "f". +msgid "The parameter \"f\" is required but missing." +msgstr "O parámetro \"f\" é necesario, pero falta." + +#. TRANS: Client error displayed when trying to minify an unsupported file type. +msgid "File type not supported." +msgstr "Tipo de ficheiro non soportado." diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 958742321b..7acbed2c70 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 2af9a355df..2eb659c37c 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index db8f9135fb..2de30e8c35 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index 2c1b05efe1..c5324d6317 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 3719154395..ed20683e12 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 2d14a25fd3..3609cc1a79 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 277e64ac42..bb902c5e7e 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 61d7765e1f..f3bd6a0ea1 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index d2e46a52a2..1c88a57e02 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 2eea61e608..42c06f6c35 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 992c06ce7e..0e13dee5da 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index ce39043d20..5560429fde 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:44+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ce\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 9aacee9698..0feee47dfd 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po index 48d2b2549d..7bff42cdf5 100644 --- a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:44+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index f858dc8b80..5f682334e4 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index 6f7d15d353..38e8d562d1 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:44+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..a799b3b675 --- /dev/null +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - MobileProfile 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 - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Esta páxina non está dispoñible nun formato axeitado para vostede." + +#. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. +msgid "Switch to desktop site layout." +msgstr "Cambiar ao esquema do sitio de escritorio." + +#. TRANS: Link to switch site layout from desktop to mobile mode. Appears at very bottom of page. +msgid "Switch to mobile site layout." +msgstr "Cambiar ao esquema do sitio de móbil." + +#. TRANS: Plugin description. +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "Saída XHTML MobileProfile para os navegadores compatibles." diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index bed5a51ab0..3c3a85dc9b 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 8bd6586aa3..563c3d89f0 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index 41a426d057..ba65b68e03 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 44f3089f3b..336f5f75a3 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index f4c9b86c9f..163761ecce 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index 195a5e6c50..714c87e040 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 29436b3cbf..703f57f4f2 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index cc07df5151..61d2e3642d 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 3551b8f8be..480a9f73d5 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index daad6790c0..59f335bf77 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 2727497b8c..99c0945582 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 5fea735183..29cb864e8c 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 7f24006aae..5e7efc5e24 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po index e0bbe1361b..aa11f5c9c5 100644 --- a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:46+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index f474ffad72..8a1477906e 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 165211b8ce..7a84009c36 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index abbf46a419..295cebd3dc 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index ddddaee956..43262d6e1e 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index 0d6515f64f..a1baa19416 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index ff1a809523..3288ef3849 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index 304c44d324..8d4d91609c 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 39ea8f3799..9e9e9a2b15 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 4befd07460..efea87ab1b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 index 1eaa53bbca..9bd89eb911 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:31+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 626ed27a89..3bc8937e01 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index 16d98a3d1c..0cfcc66f64 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po new file mode 100644 index 0000000000..2f26817d3d --- /dev/null +++ b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po @@ -0,0 +1,61 @@ +# Translation of StatusNet - ModPlus 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 - ModPlus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "O usuario non ten 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 en %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 "" +"Este perfil remoto está rexistrado noutro sitio; bote unha ollada ao [perfil " +"orixinal de %1$s en %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 "" +"Os moderadores do sitio silenciaron este perfil, o que impide o envío de " +"novas mensaxes a calquera usuario neste sitio." + +#. TRANS: Plugin description. +msgid "UI extension for profile moderation actions." +msgstr "" +"Extensións de interface de usuario para as accións de moderación dos perfís." + +#. TRANS: Label for access to remote profile options. +msgid "Remote profile options..." +msgstr "Opcións de perfil remoto..." diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index e217f91c5e..f2c0b0624f 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:31+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index e4043bc3cd..7a21b5c61e 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index ab645e62a2..08ca20233c 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index 8eea76ede4..8208f5e8bc 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index b318a4b544..fd8a07fbf5 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index cbf85955aa..6ae55017b8 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 086ae675cc..78b473b35e 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index b67b1ac877..2945b7b368 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index 3845ceb925..f94ef73361 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po index 19f97a37da..cc7a2ce28d 100644 --- a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index b410cb64dd..a9546b346f 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index 9d03372bfe..508f917011 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index 0fb9289584..9470ab7023 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index f107e52923..fa366235e1 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po index 300f06464b..2325bd9be0 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index 76c1f292a2..b777f0d4fb 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index 7d5a87ab71..c093ad2c6a 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index e80502e8a6..7aa1b6f66a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 ba24b062f3..4a10235531 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:50+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po index 8be814e0d8..7f61b773b0 100644 --- a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 5a78b9cc48..4f2c788f30 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po index a277846c8b..4012bf8d8f 100644 --- a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:50+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po new file mode 100644 index 0000000000..be0ccc67da --- /dev/null +++ b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - Msn 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 - Msn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Envíame unha mensaxe para publicar unha nota" + +#. 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 "Erro na base de datos ao inserir un elemento na cola." + +#. 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 "Cómpre especificar un usuario." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a password." +msgstr "Cómpre especificar un contrasinal." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a nickname." +msgstr "Cómpre especificar un alcume." + +#. TRANS: Plugin description. +msgid "" +"The MSN plugin allows users to send and receive notices over the MSN network." +msgstr "" +"O complemento MSN permite aos usuarios enviar e recibir mensaxes desde a " +"rede de MSN." diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index de3404c701..26a0ed48d3 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index d754c607ae..a0c6bcfc2d 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index d95ddb764f..ba7a8db0d8 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index fe1464617c..ae7b447302 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ 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:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 371f01a55c..d83b83a96c 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 44af9f9dde..927fd72fe1 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 6e3fefebae..9afbaaa660 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 2bc6f4a305..092a8ed14a 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index c9c703a0b4..2035a0fd0d 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po index e5bbfc2cd9..5276bb0346 100644 --- a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ca/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-05-05 20:48+0000\n" -"PO-Revision-Date: 2011-05-05 20:50:15+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-04-27 13:28:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87509); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -36,4 +37,4 @@ msgstr[1] "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" -msgstr "" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index b9a1657643..4b0317585f 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po index a94a40be62..06e39a00b4 100644 --- a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:52+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 05554d133d..421477e75c 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..4676df3d1b --- /dev/null +++ b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - NoticeTitle 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 - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Adds optional titles to notices." +msgstr "Engade títulos opcionais ás notas." + +#. 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] "O título da nota é longo de máis (o máximo é %d carácter)." +msgstr[1] "O título da nota é longo de máis (o máximo son %d caracteres)." + +#. 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/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index 3fe82a1ae4..f79687f27d 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 47cb849347..2d9461f810 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 2d16012bef..ff4e8d9b36 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 365d84ed07..9ba389a6f9 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index fbbc5019ad..09dda5fe5c 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:52+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ne\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 33df80e24f..bd99270370 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index fc7d216d89..f99b4e72d2 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index 6df0bd643f..10555b25a6 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:52+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 41649117dd..5528e79293 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 9cb4987304..e12f9b8573 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OMB/locale/OMB.pot b/plugins/OMB/locale/OMB.pot index f28998e5fc..5882cdd915 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 24bc35aad3..ec2e01c3f4 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po index ffb01a2fab..6624247a7a 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:53+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po index f90e1a1e80..496df97d1e 100644 --- a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po index f759827b34..6ba643589e 100644 --- a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..0fcde0a404 --- /dev/null +++ b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po @@ -0,0 +1,61 @@ +# Translation of StatusNet - OMB 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 - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:54+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-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Subscribirse" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Aceptar" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Rexeitar" + +#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción." + +#. 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 "Non pode listar un perfil remoto OMB 0.1 con esta acción." + +#. 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 "Non pode (des)listar un perfil remoto OMB 0.1 con esta acción." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "Non se puido borrar o pase de subscrición OMB." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un complemento de exemplo para mostrar os principios básicos de " +"desenvolvemento aos novos programadores." diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index 48bef9b8ae..fc73484307 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po index c94391ee90..225d896d62 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po index 7e6dafda00..1a2cd8683d 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 749b450f64..22fcb8827f 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 index f26aa18235..1b078091f5 100644 --- a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Gemmaa +# Author: Toliño # Author: Toniher # -- # This file is distributed under the same license as the StatusNet package. @@ -10,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -179,6 +180,7 @@ 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. +#, fuzzy msgid "Unlike" msgstr "A diferència de" @@ -834,9 +836,9 @@ msgid "Cannot save OStatus profile." msgstr "No es pot desar el perfil local." #. TRANS: Exception. %s is a webfinger address. -#, fuzzy, php-format +#, php-format msgid "Could not save profile for \"%s\"." -msgstr "No es poden desar els detalls de perfil." +msgstr "No s'ha pogut desar el perfil de «%s»." #. TRANS: Exception. %s is a webfinger address. #, php-format diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 9b80d15908..829c06d864 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -12,13 +12,13 @@ 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:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index fd17675e43..48976cd99d 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,13 +14,13 @@ 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:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po index bf492b90e3..9bde218775 100644 --- a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po @@ -1,5 +1,5 @@ # Translation of StatusNet - OStatus to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,748 +9,946 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:50+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-01-10 18:26:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Link description for link to subscribe to a remote user. +#. TRANS: String in the gettext speed test script. Unimportant. +msgid "Feeds" +msgstr "Fontes de novas" + +#. TRANS: Link to subscribe to a remote entity. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:223 OStatusPlugin.php:933 msgid "Subscribe" msgstr "Subscribirse" -#. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:242 OStatusPlugin.php:651 actions/ostatussub.php:109 -msgid "Join" -msgstr "Unirse" +#. TRANS: Fieldset legend. +msgid "List remote profile" +msgstr "Listar un perfil remoto" -#. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:455 +#. TRANS: Field label. +msgctxt "LABEL" +msgid "Remote profile" +msgstr "Perfil remoto" + +#. 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 "" +"Enderezo dun usuario do OStatus, por exemplo alcume@example.com ou http://" +"example.net/alcume." + +#. TRANS: Button text to fetch remote profile. +msgctxt "BUTTON" +msgid "Fetch" +msgstr "Mostrar" + +#. TRANS: Exception in OStatus when invalid URI was entered. +msgid "Invalid URI." +msgstr "Enderezo URI inválido." + +#. 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 "" +"Sentímolo, non atopamos ese enderezo. Asegúrese de que o enderezo do OStatus " +"é da forma alcume@example.com ou http://example.net/alcume." + +#. TRANS: Title. %s is a domain name. #, php-format msgid "Sent from %s via OStatus" -msgstr "" +msgstr "Enviado desde %s a través do OStatus" -#. TRANS: Exception. -#: OStatusPlugin.php:527 +#. TRANS: Exception thrown when setup of remote subscription fails. msgid "Could not set up remote subscription." -msgstr "" +msgstr "Non se puido configurar a subscrición remota." -#: OStatusPlugin.php:601 +#. TRANS: Title for unfollowing a remote profile. +msgctxt "TITLE" msgid "Unfollow" -msgstr "" +msgstr "Deixar 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. -#: OStatusPlugin.php:604 #, php-format msgid "%1$s stopped following %2$s." -msgstr "" +msgstr "%1$s deixou seguir a %2$s." -#: OStatusPlugin.php:632 +#. TRANS: Exception thrown when setup of remote group membership fails. msgid "Could not set up remote group membership." -msgstr "" +msgstr "Non se puido establecer a pertenza ao grupo remoto." + +#. TRANS: Title for joining a remote groep. +msgctxt "TITLE" +msgid "Join" +msgstr "Unirse" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:654 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s uniuse ao grupo %2$s." -#. TRANS: Exception. -#: OStatusPlugin.php:663 +#. TRANS: Exception thrown when joining a remote group fails. msgid "Failed joining remote group." -msgstr "" +msgstr "Erro ao unirse ao grupo remoto." -#: OStatusPlugin.php:703 +#. TRANS: Title for leaving a remote group. +msgctxt "TITLE" msgid "Leave" msgstr "Deixar" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:706 #, php-format msgid "%1$s has left group %2$s." -msgstr "" +msgstr "%1$s deixou o grupo %2$s." -#: OStatusPlugin.php:781 -msgid "Disfavor" +#. TRANS: Exception thrown when setup of remote list subscription fails. +msgid "Could not set up remote list subscription." +msgstr "Non se puido configurar a subscrición á lista remota." + +#. TRANS: Title for following a remote list. +msgctxt "TITLE" +msgid "Follow list" +msgstr "Seguir a lista" + +#. 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á a seguir a xente da lista %2$s de %3$s." + +#. TRANS: Exception thrown when subscription to remote list fails. +msgid "Failed subscribing to remote list." +msgstr "Erro ao subscribirse á lista remota." + +#. TRANS: Title for unfollowing a remote list. +msgid "Unfollow list" +msgstr "Non seguir a lista" + +#. 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 deixou de seguir a lista %2$s de %3$s." + +#. TRANS: Title for listing a remote profile. +msgctxt "TITLE" +msgid "List" +msgstr "Listar" + +#. 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 incluíu a %2$s na lista %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 "" +"Non se puido completar a subscrición á fonte de novas do perfil remoto. A " +"lista %s non se pode gardar." + +#. TRANS: Title for unlisting a remote profile. +msgctxt "TITLE" +msgid "Unlist" +msgstr "Retirar da lista" + +#. 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$s eliminou a %2$s na lista %3$s." + +#. TRANS: Title for unliking a remote notice. +msgid "Unlike" +msgstr "Deixar de gustar" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:784 #, php-format -msgid "%1$s marked notice %2$s as no longer a favorite." -msgstr "" +msgid "%1$s no longer likes %2$s." +msgstr "%1$s xa non gusta de %2$s." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:860 msgid "Remote" -msgstr "" +msgstr "Remoto" #. TRANS: Title for activity. -#: OStatusPlugin.php:900 msgid "Profile update" msgstr "Actualización do perfil" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:903 #, php-format msgid "%s has updated their profile page." -msgstr "" +msgstr "%s actualizou o seu perfil." + +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" +msgstr "Listar" #. TRANS: Plugin description. -#: OStatusPlugin.php:948 msgid "" "Follow people across social networks that implement OStatus." msgstr "" - -#: classes/FeedSub.php:252 -msgid "Attempting to start PuSH subscription for feed with no hub." -msgstr "" - -#: classes/FeedSub.php:282 -msgid "Attempting to end PuSH subscription for feed with no hub." -msgstr "" - -#. TRANS: Server exception. %s is a URI. -#: classes/Ostatus_profile.php:192 -#, php-format -msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." -msgstr "" - -#. TRANS: Server exception. %s is a URI. -#: classes/Ostatus_profile.php:195 -#, php-format -msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." -msgstr "" - -#. TRANS: Server exception. -#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:285 -#, php-format -msgid "Invalid actor passed to %1$s: %2$s." -msgstr "" - -#. TRANS: Server exception. -#: classes/Ostatus_profile.php:378 -msgid "" -"Invalid type passed to Ostatus_profile::notify. It must be XML string or " -"Activity entry." -msgstr "" - -#. TRANS: Exception. -#: classes/Ostatus_profile.php:409 -msgid "Unknown feed format." -msgstr "" - -#. TRANS: Exception. -#: classes/Ostatus_profile.php:433 -msgid "RSS feed without a channel." -msgstr "" +"Seguir xente a través das redes sociais que integren o OStatus." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:479 -msgid "Can't handle that kind of post." -msgstr "" - -#. TRANS: Client exception. %s is a source URI. -#: classes/Ostatus_profile.php:537 -#, php-format -msgid "No content for notice %s." -msgstr "" - -#. 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. -#: classes/Ostatus_profile.php:572 -msgid "Show more" -msgstr "Mostrar máis" - -#. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:765 -#, php-format -msgid "Could not reach profile page %s." -msgstr "" - -#. TRANS: Exception. %s is a URL. -#: classes/Ostatus_profile.php:823 -#, php-format -msgid "Could not find a feed URL for profile page %s." -msgstr "" - -#. TRANS: Feed sub exception. -#: classes/Ostatus_profile.php:922 -msgid "Can't find enough profile information to make a feed." -msgstr "" - -#. TRANS: Server exception. %s is a URL. -#: classes/Ostatus_profile.php:986 -#, php-format -msgid "Invalid avatar URL %s." -msgstr "" - -#. TRANS: Server exception. %s is a URI. -#: classes/Ostatus_profile.php:997 -#, php-format -msgid "Tried to update avatar for unsaved remote profile %s." -msgstr "" - -#. TRANS: Server exception. %s is a URL. -#: classes/Ostatus_profile.php:1007 -#, php-format -msgid "Unable to fetch avatar from %s." -msgstr "" - -#. TRANS: Exception. -#: classes/Ostatus_profile.php:1233 -msgid "Local user can't be referenced as remote." -msgstr "" - -#. TRANS: Exception. -#: classes/Ostatus_profile.php:1238 -msgid "Local group can't be referenced as remote." -msgstr "" - -#. TRANS: Server exception. -#: classes/Ostatus_profile.php:1290 classes/Ostatus_profile.php:1301 -msgid "Can't save local profile." -msgstr "" - -#. TRANS: Server exception. -#: classes/Ostatus_profile.php:1309 -msgid "Can't save OStatus profile." -msgstr "" - -#. TRANS: Exception. -#: classes/Ostatus_profile.php:1573 classes/Ostatus_profile.php:1601 -msgid "Not a valid webfinger address." -msgstr "" - -#. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1683 -#, php-format -msgid "Couldn't save profile for \"%s\"." -msgstr "" - -#. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1702 -#, php-format -msgid "Couldn't save ostatus_profile for \"%s\"." -msgstr "" - -#. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1710 -#, php-format -msgid "Couldn't find a valid profile for \"%s\"." -msgstr "" - -#. TRANS: Server exception. -#: classes/Ostatus_profile.php:1753 -msgid "Could not store HTML content of long post as file." -msgstr "" - -#. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:212 -#, php-format -msgid "Hub subscriber verification returned HTTP %s." -msgstr "" - -#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:359 -#, php-format -msgid "Callback returned status: %1$s. Body: %2$s" -msgstr "" - -#. TRANS: Client error. POST is a HTTP command. It should not be translated. -#: lib/salmonaction.php:43 -msgid "This method requires a POST." -msgstr "" - -#. TRANS: Client error. Do not translate "application/magic-envelope+xml" -#: lib/salmonaction.php:48 -msgid "Salmon requires \"application/magic-envelope+xml\"." -msgstr "" - -#. TRANS: Client error. -#: lib/salmonaction.php:58 -msgid "Salmon signature verification failed." -msgstr "" - -#. TRANS: Client error. -#: lib/salmonaction.php:70 -msgid "Salmon post must be an Atom entry." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:120 -msgid "Unrecognized activity type." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:130 -msgid "This target doesn't understand posts." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:136 -msgid "This target doesn't understand follows." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:142 -msgid "This target doesn't understand unfollows." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:148 -msgid "This target doesn't understand favorites." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:154 -msgid "This target doesn't understand unfavorites." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:160 -msgid "This target doesn't understand share events." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:166 -msgid "This target doesn't understand joins." -msgstr "" - -#. TRANS: Client exception. -#: lib/salmonaction.php:172 -msgid "This target doesn't understand leave events." -msgstr "" - -#. TRANS: Exception. -#: lib/salmonaction.php:200 -msgid "Received a salmon slap from unidentified actor." -msgstr "" - -#. TRANS: Exception. -#: lib/discovery.php:110 -#, php-format -msgid "Unable to find services for %s." -msgstr "" - -#. TRANS: Exception. -#: lib/magicenvelope.php:80 -msgid "Unable to locate signer public key." -msgstr "" - -#. TRANS: Exception. -#: lib/salmon.php:93 -msgid "Salmon invalid actor for signing." -msgstr "" - -#: tests/gettext-speedtest.php:57 -msgid "Feeds" -msgstr "Fontes de novas" - -#. TRANS: Client exception. -#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." -msgstr "" +msgstr "Non está soportada a publicación fóra das fontes de novas." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." -msgstr "" +msgstr "Non se recoñece o modo \"%s\"." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " "feeds." msgstr "" +"Non se soporta o hub.topic %s. Este centro de actividade serve unicamente " +"aos usuarios locais e ás fontes de novas Atom." -#. TRANS: Client exception. -#: actions/pushhub.php:99 +#. TRANS: Client exception. %s is sync or async. #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "" +"Verificación hub.verify inválida: \"%s\". Debe ser \"sync\" ou \"async\"." -#. TRANS: Client exception. -#: actions/pushhub.php:105 +#. TRANS: Client exception. %s is the invalid lease value. #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" +"Arrendamento hub.lease inválido: \"%s\". Debe estar baleiro ou ser un " +"enteiro positivo." -#. TRANS: Client exception. -#: actions/pushhub.php:113 +#. TRANS: Client exception. %s is the invalid hub secret. #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" +"Frase secreta hub.secret inválida: \"%s\". Debe ser menos de 200 bytes." -#. TRANS: Client exception. -#: actions/pushhub.php:165 +#. TRANS: Client exception. %s is a feed URL. #, php-format -msgid "Invalid hub.topic \"%s\". User doesn't exist." -msgstr "" +msgid "Invalid hub.topic \"%s\". User does not exist." +msgstr "Tema hub.topic inválido: \"%s\". O usuario non existe." -#. TRANS: Client exception. -#: actions/pushhub.php:174 +#. TRANS: Client exception. %s is a feed URL. #, php-format -msgid "Invalid hub.topic \"%s\". Group doesn't exist." -msgstr "" +msgid "Invalid hub.topic \"%s\". Group does not exist." +msgstr "Tema hub.topic inválido: \"%s\". O grupo non existe." + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic %s; list does not exist." +msgstr "Tema hub.topic inválido: \"%s\". A lista non existe." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" -msgstr "" +msgstr "Pasóuselle un enderezo URL inválido a %1$s: \"%2$s\"" -#: actions/ownerxrd.php:39 actions/usersalmon.php:43 -msgid "No such user." -msgstr "" +#. 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 "Pode empregar a funcionalidade de lista local!" -#. TRANS: Client error. -#: actions/usersalmon.php:37 actions/groupsalmon.php:40 -msgid "No ID." -msgstr "" - -#. TRANS: Client exception. -#: actions/usersalmon.php:83 -msgid "In reply to unknown notice." -msgstr "" - -#. TRANS: Client exception. -#: actions/usersalmon.php:88 -msgid "In reply to a notice not by this user and not mentioning this user." -msgstr "" - -#. TRANS: Client exception. -#: actions/usersalmon.php:165 -msgid "Could not save new favorite." -msgstr "" - -#. TRANS: Client exception. -#: actions/usersalmon.php:197 -msgid "Can't favorite/unfavorite without an object." -msgstr "" - -#. TRANS: Client exception. -#: actions/usersalmon.php:209 -msgid "Can't handle that kind of object for liking/faving." -msgstr "" - -#. TRANS: Client exception. %s is an object ID. -#: actions/usersalmon.php:216 +#. TRANS: Header for listing a remote object. %s is a remote object's name. #, php-format -msgid "Notice with ID %s unknown." -msgstr "" +msgid "List %s" +msgstr "Listar %s" -#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. -#: actions/usersalmon.php:221 -#, php-format -msgid "Notice with ID %1$s not posted by %2$s." -msgstr "" +#. TRANS: Button text to list a remote object. +msgctxt "BUTTON" +msgid "Go" +msgstr "Ir" #. TRANS: Field label. -#: actions/ostatusgroup.php:78 -msgid "Join group" -msgstr "Unirse ao grupo" +msgid "User nickname" +msgstr "Alcume do usuario" -#. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:81 -msgid "OStatus group's address, like http://example.net/group/nickname." -msgstr "" +#. TRANS: Field title. +msgid "Nickname of the user you want to list." +msgstr "Alcume do usuario ao que quere listar." -#. TRANS: Button text. -#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 -msgctxt "BUTTON" -msgid "Continue" -msgstr "" +#. TRANS: Field label. +msgid "Profile Account" +msgstr "Conta de perfil" -#: actions/ostatusgroup.php:105 -msgid "You are already a member of this group." -msgstr "" - -#. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:140 -msgid "Already a member!" -msgstr "" - -#. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:151 -msgid "Remote group join failed!" -msgstr "" - -#. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:155 -msgid "Remote group join aborted!" -msgstr "" - -#. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:167 -msgid "Confirm joining remote group" -msgstr "" - -#. TRANS: Instructions. -#: actions/ostatusgroup.php:178 -msgid "" -"You can subscribe to groups from other supported sites. Paste the group's " -"profile URI below:" -msgstr "" +#. TRANS: Field title. +msgid "Your account id (for example user@identi.ca)." +msgstr "O ID da súa conta (por exemplo, usuario@identi.ca)." +#. TRANS: Client error displayed when remote profile could not be looked up. #. TRANS: Client error. -#: actions/groupsalmon.php:47 -msgid "No such group." -msgstr "" +msgid "Could not look up OStatus account profile." +msgstr "Non pode consultar o perfil da conta do OStatus." +#. TRANS: Client error displayed when remote profile address could not be confirmed. #. TRANS: Client error. -#: actions/groupsalmon.php:56 -msgid "Can't accept remote posts for a remote group." -msgstr "" +msgid "Could not confirm remote profile address." +msgstr "Non se puido confirmar o enderezo do perfil remoto." -#. TRANS: Client error. -#: actions/groupsalmon.php:130 -msgid "Can't read profile to set up group membership." -msgstr "" +#. TRANS: Title for an OStatus list. +msgid "OStatus list" +msgstr "Lista de OStatus" -#. TRANS: Client error. -#: actions/groupsalmon.php:134 actions/groupsalmon.php:177 -msgid "Groups can't join groups." -msgstr "" +#. TRANS: Server exception thrown when referring to a non-existing or empty feed. +msgid "Empty or invalid feed id." +msgstr "O ID da fonte de novas é inválido ou está baleiro." -#: actions/groupsalmon.php:147 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. -#: actions/groupsalmon.php:162 +#. TRANS: Server exception. %s is a feed ID. #, php-format -msgid "Could not join remote user %1$s to group %2$s." -msgstr "" +msgid "Unknown PuSH feed id %s" +msgstr "Descoñécese o ID da fonte de novas %s" -#: actions/groupsalmon.php:174 -msgid "Can't read profile to cancel group membership." -msgstr "" - -#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. -#: actions/groupsalmon.php:191 +#. TRANS: Client exception. %s is an invalid feed name. #, php-format -msgid "Could not remove remote user %1$s from group %2$s." -msgstr "" +msgid "Bad hub.topic feed \"%s\"." +msgstr "Fonte de novas hub.topic incorrecta: \"%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 "Pase hub.verify_token incorrecto %1$s para %2$s." + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Solicitude de subscrición inesperada para %s." + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Solicitude de cancelación da subscrición inesperada para %s." + +#. TRANS: Client error displayed when referring to a non-existing user. +#. TRANS: Client error. +msgid "No such user." +msgstr "Non existe tal usuario." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "Subscribirse a" -#. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:71 -msgid "" -"OStatus user's address, like nickname@example.com or http://example.net/" -"nickname" -msgstr "" +#. TRANS: Button text. +#. TRANS: Button text to continue joining a remote list. +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuar" #. TRANS: Button text. +msgid "Join" +msgstr "Unirse" + #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Unirse a este grupo" #. TRANS: Button text. -#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Confirmar" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "Subscribirse a este usuario" -#: actions/ostatussub.php:138 +#. TRANS: Extra paragraph in remote profile view when already subscribed. msgid "You are already subscribed to this user." msgstr "Xa está subscrito a este usuario." -#: actions/ostatussub.php:167 -msgid "Photo" -msgstr "Foto" - -#: actions/ostatussub.php:178 -msgid "Nickname" -msgstr "Alcume" - -#: actions/ostatussub.php:199 -msgid "Location" -msgstr "Localización" - -#: actions/ostatussub.php:208 -msgid "URL" -msgstr "URL" - -#: actions/ostatussub.php:220 -msgid "Note" -msgstr "Nota" - #. TRANS: Error text. -#: actions/ostatussub.php:256 actions/ostatussub.php:263 -#: actions/ostatussub.php:288 -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 "" - -#. TRANS: Error text. -#: actions/ostatussub.php:267 actions/ostatussub.php:271 -#: actions/ostatussub.php:275 actions/ostatussub.php:279 -#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." msgstr "" +"Sentímolo, non atopamos esa fonte de novas. Inténteo de novo con ese " +"enderezo máis tarde." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:317 +#. TRANS: OStatus remote group subscription dialog error. msgid "Already subscribed!" msgstr "Xa está subscrito!" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:322 msgid "Remote subscription failed!" -msgstr "" +msgstr "Erro na subscrición remota!" -#: actions/ostatussub.php:369 actions/ostatusinit.php:64 +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un erro co seu pase. Inténteo de novo." #. TRANS: Form title. -#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "Subscribirse ao usuario" -#. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:417 +#. TRANS: Page title for OStatus remote subscription form. msgid "Confirm" msgstr "Confirmar" #. TRANS: Instructions. -#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" msgstr "" +"Pode subscribirse a usuarios doutros sitios soportados. Pegue o seu enderezo " +"ou o URI do seu perfil a continuación:" + +#. TRANS: Field label. +msgid "Join group" +msgstr "Unirse ao grupo" + +#. 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 "Un enderezo de grupo do OStatus, como http://example.net/group/alcume." + +#. 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 "Xa forma parte dese grupo." + +#. TRANS: OStatus remote group subscription dialog error. +msgid "Already a member!" +msgstr "Xa é membro!" + +#. TRANS: OStatus remote group subscription dialog error. +msgid "Remote group join failed!" +msgstr "Erro ao unirse ao grupo remoto!" + +#. TRANS: Page title for OStatus remote group join form +msgid "Confirm joining remote group" +msgstr "Confirmar a unión ao grupo remoto" + +#. TRANS: Form instructions. +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Pode subscribirse a grupos doutros sitios soportados. Pegue o URI do perfil " +"do grupo a continuación:" + +#. 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 "Sen ID." + +#. TRANS: Client exception thrown when an undefied activity is performed. +#. TRANS: Client exception. +msgid "Cannot handle that kind of post." +msgstr "Non se pode manexar ese tipo de publicación." + +#. TRANS: Client exception. +msgid "In reply to unknown notice." +msgstr "En resposta a unha nota descoñecida." + +#. TRANS: Client exception. +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" +"En resposta a unha nota que non é deste usuario e que tampouco o menciona." + +#. TRANS: Client exception. +msgid "To the attention of user(s), not including this one." +msgstr "Á atención do(s) usuario(s), sen incluír este." + +#. TRANS: Client exception. +msgid "Not to anyone in reply to anything." +msgstr "A ninguén en resposta a nada." + +#. TRANS: Client exception. +msgid "This is already a favorite." +msgstr "Xa é dos favoritos." + +#. TRANS: Client exception. +msgid "Could not save new favorite." +msgstr "Non se puido gardar o novo favorito." + +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "A nota non se engadiu aos favoritos!" + +#. TRANS: Client exception. +msgid "Not a person object." +msgstr "Non é un obxecto persoal." + +#. TRANS: Client exception. +msgid "Unidentified profile being listed." +msgstr "Hai listado un perfil non identificado." + +#. TRANS: Client exception. +msgid "This user is not the one being listed." +msgstr "Este non é o usuario que está listado." + +#. TRANS: Client exception. +msgid "The listing could not be saved." +msgstr "Non se pode gardar a lista." + +#. TRANS: Client exception. +msgid "Unidentified profile being unlisted." +msgstr "Hai retirado da lista un perfil non identificado." + +#. TRANS: Client exception. +msgid "This user is not the one being unlisted." +msgstr "Este non é o usuario que está retirado da lista." + +#. TRANS: Client exception. +msgid "The listing could not be deleted." +msgstr "Non se pode borrar a lista." + +#. TRANS: Client exception. +msgid "Cannot favorite/unfavorite without an object." +msgstr "Non se pode engadir ou eliminar dos favoritos sen un obxecto." + +#. TRANS: Client exception. +msgid "Cannot handle that kind of object for liking/faving." +msgstr "" +"Non se pode manexar ese tipo de obxecto para gustar ou engadir aos favoritos." + +#. TRANS: Client exception. %s is an object ID. +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Descoñécese a nota co ID %s." + +#. 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 "A nota co ID %1$s non foi publicada por %2$s" + +#. TRANS: Field label. +msgid "Subscribe to list" +msgstr "Subscribirse á lista" + +#. TRANS: Field title. +msgid "Address of the OStatus list, like http://example.net/user/all/tag." +msgstr "" +"Enderezo da lista do OStatus, como http://example.net/user/all/etiqueta." + +#. TRANS: Error text displayed when trying to subscribe to a list already a subscriber to. +msgid "You are already subscribed to this list." +msgstr "Xa está subscrito a esta lista." + +#. TRANS: Page title for OStatus remote list subscription form +msgid "Confirm subscription to remote list" +msgstr "Confirmar a subscrición á lista 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 "" +"Pode subscribirse a listas doutros sitios soportados. Pegue o URI da lista a " +"continuación:" + +#. TRANS: Client error. +msgid "No such group." +msgstr "Non existe tal grupo." + +#. TRANS: Client error. +msgid "Cannot accept remote posts for a remote group." +msgstr "Non se poden aceptar publicacións remotas para un grupo remoto." + +#. TRANS: Client error. +msgid "Cannot read profile to set up group membership." +msgstr "Non se pode ler o perfil para configurar a pertenza ao grupo." + +#. TRANS: Client error. +#. TRANS: Client error displayed when trying to have a group join another group. +msgid "Groups cannot join groups." +msgstr "Os grupos non se poden unir aos grupos." + +#. 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 "O administrador bloqueouno nese grupo." + +#. 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 "O usuario remoto %1$s non se puido engadir ao grupo %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 "Non se pode ler o perfil para cancelar a pertenza ao grupo." + +#. 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 "O usuario remoto %1$s non se puido eliminar do grupo %2$s." + +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error. +msgid "No such list." +msgstr "Non existe tal lista." + +#. TRANS: Client error displayed when trying to send a message to a remote list. +msgid "Cannot accept remote posts for a remote list." +msgstr "Non se poden aceptar publicacións remotas para unha lista remota." + +#. TRANS: Client error displayed when referring to a non-existing remote list. +msgid "Cannot read profile to set up list subscription." +msgstr "Non se pode ler o perfil para configurar a subscrición á lista." + +#. 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 "Os grupos non se poden subscribir ás listas." + +#. 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 "O usuario remoto %1$s non se puido subscribir á lista %2$s." + +#. TRANS: Client error displayed when trying to unsubscribe from non-existing list. +msgid "Cannot read profile to cancel list subscription." +msgstr "Non se pode ler o perfil para cancelar a subscrición á lista." + +#. 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 "O usuario remoto %1$s non puido cancelar a subscrición á lista %2$s." #. TRANS: Client error. -#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "Pode usar a subscrición local!" -#. TRANS: Form legend. -#: actions/ostatusinit.php:98 +#. TRANS: Form title. +msgctxt "TITLE" +msgid "Subscribe to user" +msgstr "Subscribirse ao usuario" + +#. TRANS: Form legend. %s is a group name. #, php-format msgid "Join group %s" msgstr "Unirse ao grupo \"%s\"" -#. TRANS: Button text. -#: actions/ostatusinit.php:100 +#. TRANS: Button text to join a group. msgctxt "BUTTON" msgid "Join" msgstr "Unirse" -#. TRANS: Form legend. -#: actions/ostatusinit.php:103 +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format -msgid "Subscribe to %s" -msgstr "Subscribirse a %s" +msgid "Subscribe to list %1$s by %2$s" +msgstr "Subscribirse á lista %1$s de %2$s" -#. TRANS: Button text. -#: actions/ostatusinit.php:105 +#. TRANS: Button text to subscribe to a list. +#. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscribirse" -#. TRANS: Field label. -#: actions/ostatusinit.php:118 -msgid "User nickname" -msgstr "Alcume do usuario" +#. TRANS: Form legend. %s is a nickname. +#, php-format +msgid "Subscribe to %s" +msgstr "Subscribirse a %s" -#: actions/ostatusinit.php:119 +#. TRANS: Field label. +msgid "Group nickname" +msgstr "Alcume do grupo" + +#. TRANS: Field title. +msgid "Nickname of the group you want to join." +msgstr "Alcume do grupo ao que se quere unir." + +#. TRANS: Field title. msgid "Nickname of the user you want to follow." msgstr "Alcume do usuario ao que quere seguir." -#. TRANS: Field label. -#: actions/ostatusinit.php:124 -msgid "Profile Account" -msgstr "Conta de perfil" - #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:126 -msgid "Your account id (e.g. user@identi.ca)." -msgstr "" +msgid "Your account ID (e.g. user@identi.ca)." +msgstr "O ID da súa conta (por exemplo, usuario@identi.ca)." #. TRANS: Client error. -#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." -msgstr "" +msgstr "Cómpre especificar un perfil remoto." #. TRANS: Client error. -#: actions/ostatusinit.php:160 -msgid "Couldn't look up OStatus account profile." -msgstr "" - -#. TRANS: Client error. -#: actions/ostatusinit.php:173 -msgid "Couldn't confirm remote profile address." -msgstr "" +msgid "No local user or group nickname provided." +msgstr "Non se proporcionou ningún usuario local ou alcume de grupo." #. TRANS: Page title. -#: actions/ostatusinit.php:218 msgid "OStatus Connect" -msgstr "" +msgstr "Conexión OStatus" -#: actions/pushcallback.php:50 -msgid "Empty or invalid feed id." -msgstr "" - -#. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:56 +#. TRANS: Server exception. %s is a URL. #, php-format -msgid "Unknown PuSH feed id %s" -msgstr "" +msgid "Invalid avatar URL %s." +msgstr "O enderezo URL do avatar, %s, é incorrecto." -#. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:96 +#. TRANS: Server exception. %s is a URI. #, php-format -msgid "Bad hub.topic feed \"%s\"." +msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" +"Intentouse actualizar o avatar asociado ao perfil remoto non gardado %s." -#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:101 +#. TRANS: Server exception. %s is a URL. #, php-format -msgid "Bad hub.verify_token %1$s for %2$s." -msgstr "" +msgid "Unable to fetch avatar from %s." +msgstr "Non se puido recuperar o avatar desde %s." -#. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:108 +#. TRANS: Exception. %s is a URL. #, php-format -msgid "Unexpected subscribe request for %s." +msgid "Could not find a feed URL for profile page %s." msgstr "" +"Non se puido atopar un enderezo URL de fonte de novas para a páxina de " +"perfil %s." -#. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:113 +#. TRANS: Exception. +msgid "Not a valid webfinger address." +msgstr "O enderezo de webfinger é incorrecto." + +#. TRANS: Exception. %s is a webfinger address. #, php-format -msgid "Unexpected unsubscribe request for %s." +msgid "Could not find a valid profile for \"%s\"." +msgstr "Non se puido gardar un perfil válido para \"%s\"." + +#. TRANS: Server exception. +msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "" +"Intentando iniciar a subscrición PuSH para a fonte de novas sen centro de " +"actividade." + +#. TRANS: Server exception. +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"Intentando rematar a subscrición PuSH para a fonte de novas sen centro de " +"actividade." + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: Two or more IDs set for %s." +msgstr "" +"Estado ostatus_profile inválido: Hai definidos dous ou máis identificadores " +"para %s." + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: All IDs empty for %s." +msgstr "" +"Estado ostatus_profile inválido: Todos os identificadores están baleiros " +"para %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 "Pasóuselle un tipo de actor inválido ao método %1$s: %2$s." + +#. TRANS: Server exception. +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"Pasóuselle un tipo inválido ao método Ostatus_profile::notify. Debera ser " +"unha cadea XML ou unha entrada de actividade." + +#. TRANS: Exception. +msgid "Unknown feed format." +msgstr "Formato de fonte de novas descoñecido." + +#. TRANS: Exception. +msgid "RSS feed without a channel." +msgstr "Fonte de novas RSS sen canle." + +#. TRANS: Client exception thrown when trying to share multiple activities at once. +msgid "Can only handle share activities with exactly one object." +msgstr "Pode manexar unicamente actividades con exactamente un obxecto." + +#. TRANS: Client exception thrown when trying to share a non-activity object. +msgid "Can only handle shared activities." +msgstr "Só pode manexar actividades compartidas." + +#. 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 "Erro ao gardar a actividade %s." + +#. TRANS: Client exception. %s is a source URI. +#, php-format +msgid "No content for notice %s." +msgstr "A nota %s non ten ningún contido." + +#. 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 "Mostrar máis" + +#. TRANS: Exception. %s is a profile URL. +#, php-format +msgid "Could not reach profile page %s." +msgstr "Non se puido atopar a páxina de perfil %s." + +#. TRANS: Feed sub exception. +msgid "Cannot find enough profile information to make a feed." +msgstr "" +"Non abonda a información de perfil atopada para xerar unha fonte de novas." + +#. TRANS: Server exception. +msgid "No author ID URI found." +msgstr "Non se atopou ningún URI de identificador de usuario." + +#. TRANS: Exception. +msgid "No profile URI." +msgstr "Ningún URI de perfil." + +#. TRANS: Exception. +msgid "Local user cannot be referenced as remote." +msgstr "O usuario local non se pode referenciar como remoto." + +#. TRANS: Exception. +msgid "Local group cannot be referenced as remote." +msgstr "O grupo local non se pode referenciar como remoto." + +#. TRANS: Exception. +msgid "Local list cannot be referenced as remote." +msgstr "A lista local non se pode referenciar como remota." + +#. TRANS: Server exception. +msgid "Cannot save local profile." +msgstr "Non se pode gardar o perfil local." + +#. TRANS: Server exception. +msgid "Cannot save local list." +msgstr "Non se pode gardar a lista local." + +#. TRANS: Server exception. +msgid "Cannot save OStatus profile." +msgstr "Non se pode gardar o perfil do OStatus." + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not save profile for \"%s\"." +msgstr "Non se puido gardar o perfil de \"%s\"." + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not save OStatus profile for \"%s\"." +msgstr "Non se puido gardar o perfil do OStatus para \"%s\"." + +#. TRANS: Server exception. +msgid "Could not store HTML content of long post as file." +msgstr "Non se puido almacenar como ficheiro o contido HTML da mensaxe longa." + +#. 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 "Protocolo URI non recoñecido para o perfil: %1$s (%2$s)." + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "No URI protocol for profile: %s." +msgstr "Non se atopou o protocolo URI para o perfil: %s." + +#. TRANS: Client exception. %s is a HTTP status code. +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "" +"A verificación de subscrición ao centro de actividade devolveu o código de " +"estado 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 "A chamada de retorno devolveu o seguinte estado: %1$s. Corpo: %2$s" + +#. TRANS: Exception. +msgid "Unable to locate signer public key." +msgstr "Non se puido atopar a clave pública do asinante." + +#. TRANS: Exception. +msgid "Salmon invalid actor for signing." +msgstr "O actor do protocolo Salmon é inválido para asinar." + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +msgid "This method requires a POST." +msgstr "Este método require un comando HTTP POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml". +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "O protocolo Salmon necesita \"application/magic-envelope+xml\"." + +#. TRANS: Client error. +msgid "Salmon signature verification failed." +msgstr "Erro na verificación de sinatura do protocolo Salmon." + +#. TRANS: Client error. +msgid "Salmon post must be an Atom entry." +msgstr "A publicación do protocolo Salmon debe ser unha entrada de Atom." + +#. TRANS: Client exception. +msgid "Unrecognized activity type." +msgstr "Non se recoñece o tipo de actividade." + +#. TRANS: Client exception. +msgid "This target does not understand posts." +msgstr "Este obxectivo non entende as publicacións." + +#. TRANS: Client exception. +msgid "This target does not understand follows." +msgstr "Este obxectivo non entende os seguimentos." + +#. TRANS: Client exception. +msgid "This target does not understand unfollows." +msgstr "Este obxectivo non entende a indicación de rematar o seguimento." + +#. TRANS: Client exception. +msgid "This target does not understand favorites." +msgstr "Este obxectivo non entende os favoritos." + +#. TRANS: Client exception. +msgid "This target does not understand unfavorites." +msgstr "Este obxectivo non entende a indicación de eliminar os favoritos." + +#. TRANS: Client exception. +msgid "This target does not understand share events." +msgstr "Este obxectivo non entende a indicación de compartir os eventos." + +#. TRANS: Client exception. +msgid "This target does not understand joins." +msgstr "Este obxectivo non entende as unións." + +#. TRANS: Client exception. +msgid "This target does not understand leave events." +msgstr "Este obxectivo non entende a indicación de deixar os eventos." + +#. TRANS: Client exception. +msgid "This target does not understand list events." +msgstr "Este obxectivo non entende a indicación de listar os eventos." + +#. TRANS: Client exception. +msgid "This target does not understand unlist events." +msgstr "" +"Este obxectivo non entende a indicación de retirar da lista os eventos." + +#. TRANS: Exception. +msgid "Received a salmon slap from unidentified actor." +msgstr "" +"Recibiuse unha labazada do protocolo Salmon desde un actor non identificado." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 73a9622514..0ad7d11d0f 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 33d16a2c8a..9b3455f7ab 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:07+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:24+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 04c3ae7553..7d65ea26a1 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index d8966224e2..1fa5672f57 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index 0d2df6245d..b668a421e6 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 8702e092ff..6c4b94f196 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OfflineBackup/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot index 69612eda01..505fa0845e 100644 --- a/plugins/OfflineBackup/locale/OfflineBackup.pot +++ b/plugins/OfflineBackup/locale/OfflineBackup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 5cb52d2123..e781b116e2 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 8f78cae8d5..d659e9ea0e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:54+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index b061fcaa99..43e51f8483 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 090fc835e3..60363710e0 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 2899325d6d..1beb70d979 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 9253302d1e..8e571eeab8 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po index 82b4a1d1fc..afeb07d713 100644 --- a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 6915efa240..91a8175494 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 28844da788..d9d6a8dfba 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index a36ef9eaaf..201c24f4af 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 9f836f048b..1d5e017c18 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index a107d20e06..7d2986d6b6 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 803f08a351..745e898217 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 93ca12f30c..fdc5682194 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index 3289e96c51..67a107e52d 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index c058d514c5..45c97bfb89 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index f8c5c01aa6..36bf37981d 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 6a31444a93..a761aa8388 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 360f0734d3..3ab0b6eb39 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 6562025754..14be7f4a20 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 924ab65bd5..0f78d3284f 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -17,13 +17,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po index 2be03ce345..7dc6d7ebd5 100644 --- a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:04+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 2625576790..2f140b5ce8 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -13,13 +13,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po index 9a424d50b5..871940782a 100644 --- a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po @@ -1,5 +1,5 @@ # Translation of StatusNet - OpenID to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,275 +9,80 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:29+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openidsettings.php:58 openidadminpanel.php:65 -msgid "OpenID settings" -msgstr "" +#. TRANS: Title for identity verification page. +msgid "OpenID Identity Verification" +msgstr "Verificación de identidade OpenID" -#: openidsettings.php:69 +#. TRANS: Client error when visiting page directly. +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"A esta páxina debería chegarse unicamente durante o proceso do OpenID, non " +"directamente." + +#. TRANS: Page notice. %s is a trustroot name. #, php-format msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"%s has asked to verify your identity. Click Continue to verify your identity " +"and login without creating a new password." msgstr "" +"%s pediu que a súa identidade fose verificada. Prema en \"Continuar\" para " +"comprobar a súa identidade e inicie sesión sen crear un contrasinal novo." -#: openidsettings.php:100 -msgid "Add OpenID" -msgstr "" +#. 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 "Continuar" -#: openidsettings.php:103 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" +#. TRANS: Button text to cancel OpenID identity verification. +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" -#. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 -msgid "OpenID URL" -msgstr "" - -#: openidsettings.php:118 -msgid "Add" -msgstr "Engadir" - -#: openidsettings.php:130 -msgid "Remove OpenID" -msgstr "" - -#: openidsettings.php:135 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: openidsettings.php:150 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: openidsettings.php:173 openidsettings.php:214 -msgid "Remove" -msgstr "Eliminar" - -#: openidsettings.php:187 -msgid "OpenID Trusted Sites" -msgstr "" - -#: openidsettings.php:190 -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: Message given when there is a problem with the user's session token. -#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: openidsettings.php:239 -msgid "Can't add new providers." -msgstr "" - -#: openidsettings.php:252 -msgid "Something weird happened." -msgstr "" - -#: openidsettings.php:276 -msgid "No such OpenID trustroot." -msgstr "" - -#: openidsettings.php:280 -msgid "Trustroots removed" -msgstr "" - -#: openidsettings.php:303 -msgid "No such OpenID." -msgstr "" - -#: openidsettings.php:308 -msgid "That OpenID does not belong to you." -msgstr "" - -#: openidsettings.php:312 -msgid "OpenID removed." -msgstr "" - -#: openidadminpanel.php:54 -msgid "OpenID" -msgstr "OpenID" - -#: openidadminpanel.php:147 -msgid "Invalid provider URL. Max length is 255 characters." -msgstr "" - -#: openidadminpanel.php:153 -msgid "Invalid team name. Max length is 255 characters." -msgstr "" - -#: openidadminpanel.php:210 -msgid "Trusted provider" -msgstr "" - -#: openidadminpanel.php:212 -msgid "" -"By default, users are allowed to authenticate with any OpenID provider. If " -"you are using your own OpenID service for shared sign-in, you can restrict " -"access to only your own users here." -msgstr "" - -#: openidadminpanel.php:220 -msgid "Provider URL" -msgstr "" - -#: openidadminpanel.php:221 -msgid "" -"All OpenID logins will be sent to this URL; other providers may not be used." -msgstr "" - -#: openidadminpanel.php:228 -msgid "Append a username to base URL" -msgstr "" - -#: openidadminpanel.php:230 -msgid "" -"Login form will show the base URL and prompt for a username to add at the " -"end. Use when OpenID provider URL should be the profile page for individual " -"users." -msgstr "" - -#: openidadminpanel.php:238 -msgid "Required team" -msgstr "" - -#: openidadminpanel.php:239 -msgid "Only allow logins from users in the given team (Launchpad extension)." -msgstr "" - -#: openidadminpanel.php:251 -msgid "Options" -msgstr "Opcións" - -#: openidadminpanel.php:258 -msgid "Enable OpenID-only mode" -msgstr "" - -#: openidadminpanel.php:260 -msgid "" -"Require all users to login via OpenID. Warning: disables password " -"authentication for all users!" -msgstr "" - -#: openidadminpanel.php:278 -msgid "Save OpenID settings" -msgstr "" - -#. TRANS: OpenID plugin server error. -#: openid.php:138 -msgid "Cannot instantiate OpenID consumer object." -msgstr "" - -#. TRANS: OpenID plugin message. Given when an OpenID is not valid. -#: openid.php:150 -msgid "Not a valid OpenID." -msgstr "" - -#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. -#. TRANS: %s is the failure message. -#: openid.php:155 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. -#. TRANS: %s is the failure message. -#: openid.php:205 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "" - -#. TRANS: OpenID plugin user instructions. -#: openid.php:244 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#. TRANS: OpenID plugin server error. -#: openid.php:280 -msgid "Error saving the profile." -msgstr "" - -#. TRANS: OpenID plugin server error. -#: openid.php:292 -msgid "Error saving the user." -msgstr "" - -#. TRANS: OpenID plugin client exception (403). -#: openid.php:322 -msgid "Unauthorized URL used for OpenID login." -msgstr "" - -#. TRANS: Title -#: openid.php:370 -msgid "OpenID Login Submission" -msgstr "" - -#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. -#: openid.php:381 -msgid "Requesting authorization from your login provider..." -msgstr "" - -#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. -#: openid.php:385 -msgid "" -"If you are not redirected to your login provider in a few seconds, try " -"pushing the button below." -msgstr "" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "Acción non dispoñible." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" -msgid "Login to the site" -msgstr "Identificarse no sitio" +msgid "Login to the site." +msgstr "Identificarse no sitio." #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Rexistro" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "Buscar persoas ou palabras" +msgid "Search for people or text." +msgstr "Buscar persoas ou palabras." #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Procurar" @@ -285,298 +90,563 @@ msgstr "Procurar" #. 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:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:297 -msgid "Login or register with OpenID" -msgstr "" +msgid "Login or register with OpenID." +msgstr "Iniciar sesión ou rexistrarse co OpenID." #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:333 -msgid "Add or remove OpenIDs" +msgid "Add or remove OpenIDs." +msgstr "Engadir ou eliminar identificadores 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]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" msgstr "" +"(Ten un [OpenID](http://openid.net/)? [Engada un OpenID á súa conta](%%" +"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 "" +"(Ten un [OpenID](http://openid.net/)? [Probe o noso [rexistro de 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]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" +"(Ten un [OpenID](http://openid.net/)? [Probe o noso [inicio de sesión de " +"OpenID](%%action.openidlogin%%)!)" #. TRANS: Tooltip for OpenID configuration menu item. -#: OpenIDPlugin.php:607 -msgid "OpenID configuration" -msgstr "Configuración do OpenID" +msgid "OpenID configuration." +msgstr "Configuración do OpenID." -#. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:631 +#. TRANS: Plugin description. msgid "Use OpenID to login to the site." msgstr "" - -#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. -#: OpenIDPlugin.php:641 -msgctxt "BUTTON" -msgid "Continue" -msgstr "" +"Utilizar o OpenID para acceder ao sitio." #. TRANS: OpenID plugin logon form legend. -#: OpenIDPlugin.php:658 openidlogin.php:140 +msgctxt "LEGEND" msgid "OpenID login" -msgstr "" +msgstr "Rexistro do OpenID" #. TRANS: Field label. -#: OpenIDPlugin.php:666 openidlogin.php:148 msgid "OpenID provider" -msgstr "" +msgstr "Provedor do OpenID" #. TRANS: Form guide. -#: OpenIDPlugin.php:675 openidlogin.php:156 msgid "Enter your username." -msgstr "" +msgstr "Insira o seu nome de usuario." #. TRANS: Form guide. -#: OpenIDPlugin.php:677 openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." -msgstr "" +msgstr "Irá ata o sitio do provedor para a autenticación." + +#. TRANS: OpenID plugin logon form field label. +#. TRANS: Field label. +#. TRANS: OpenID plugin logon form field label. +msgid "OpenID URL" +msgstr "Enderezo URL do OpenID" #. TRANS: OpenID plugin logon form field instructions. -#: OpenIDPlugin.php:684 openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "" - -#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:116 -#, php-format -msgid "You are not authorized to use the identity %s." -msgstr "" - -#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:137 -msgid "Just an OpenID provider. Nothing to see here, move along..." -msgstr "" +#. TRANS: OpenID plugin logon form field title. +msgid "Your OpenID URL." +msgstr "O URL do seu OpenID." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Xa se identificou." +#. 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 "Houbo un erro co seu pase. Inténteo de novo." + #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:48 -msgid "You can't register if you don't agree to the license." -msgstr "" +msgid "You cannot register if you do not agree to the license." +msgstr "Non pode rexistrarse se non acepta a licenza." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:57 msgid "An unknown error has occured." -msgstr "" +msgstr "Houbo un erro descoñecido." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:73 #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." +"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 "" +"Esta é a primeira vez que accede ao sistema de %s, de modo que debemos " +"conectar o seu OpenID cunha conta local. Pode crear unha nova conta local ou " +"ben conectar con outra conta local existente." #. TRANS: Title -#: finishopenidlogin.php:80 +msgctxt "TITLE" msgid "OpenID Account Setup" -msgstr "" +msgstr "Configuración da conta do OpenID" -#: finishopenidlogin.php:117 +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Crear unha conta nova" -#: finishopenidlogin.php:119 +#. TRANS: Form guide. msgid "Create a new user with this nickname." msgstr "Crear un novo usuario con este alcume." -#: finishopenidlogin.php:122 +#. TRANS: Field label. msgid "New nickname" msgstr "Novo alcume" -#: finishopenidlogin.php:124 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#. TRANS: Field title. +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " -"espazos, tiles ou eñes" +"espazos, tiles ou eñes." + +#. TRANS: Field label. +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Field title. +msgid "Used only for updates, announcements, and password recovery." +msgstr "" +"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais." + +#. 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 "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:149 msgctxt "BUTTON" msgid "Create" msgstr "Crear" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:163 msgid "Connect existing account" -msgstr "" +msgstr "Conectar cunha conta existente" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:166 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" +"Se xa ten unha conta, acceda ao sistema co seu nome de usuario e contrasinal " +"para conectala coa do OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:170 msgid "Existing nickname" -msgstr "" +msgstr "Alcume existente" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:174 msgid "Password" msgstr "Contrasinal" -#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:178 +#. TRANS: Button text in form in which to connect an OpenID to an existing user on the site. msgctxt "BUTTON" msgid "Connect" -msgstr "Conectarse" +msgstr "Conectar" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:191 finishaddopenid.php:90 msgid "OpenID authentication cancelled." -msgstr "" +msgstr "Cancelouse a autenticación do OpenID." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:195 finishaddopenid.php:95 #, php-format -msgid "OpenID authentication failed: %s" -msgstr "" +msgid "OpenID authentication failed: %s." +msgstr "Fallou a autenticación do OpenID: %s." -#: finishopenidlogin.php:215 finishaddopenid.php:111 +#. 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." +"OpenID authentication aborted: You are not allowed to login to this site." msgstr "" +"Interrumpiuse a autenticación do OpenID: Non ten permiso para iniciar sesión " +"neste sitio." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 msgid "Registration not allowed." -msgstr "" +msgstr "Non se permite o rexistro." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 msgid "Not a valid invitation code." -msgstr "" +msgstr "O código da invitación é incorrecto." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 msgid "Nickname not allowed." -msgstr "" +msgstr "Alcume non permitido." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 msgid "Nickname already in use. Try another one." -msgstr "" +msgstr "Ese alcume xa está en uso. Probe con outro." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 msgid "Stored OpenID not found." -msgstr "" +msgstr "Non se atopou o OpenID almacenado." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 msgid "Creating new account for OpenID that already has a user." -msgstr "" +msgstr "Crear unha nova conta para o OpenID que xa ten un usuario." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 msgid "Invalid username or password." msgstr "O nome de usuario ou contrasinal non son correctos." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 msgid "Error connecting user to OpenID." +msgstr "Erro ao conectar o usuario co OpenID." + +#. TRANS: OpenID plugin server error. +msgid "Cannot instantiate OpenID consumer object." +msgstr "Non se pode crear unha instancia co obxecto do consumidor do OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +msgid "Not a valid OpenID." +msgstr "Non é un OpenID válido." + +#. 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 "Erro no OpenID: %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 "Non se pode redirixir cara ao servidor: %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 "" +"Este formulario debería enviarse só automaticamente. Se non é así, prema no " +"botón de envío para ir ao seu provedor de OpenID." + +#. TRANS: OpenID plugin server error. +msgid "Error saving the profile." +msgstr "Houbo un erro ao gardar o perfil." + +#. TRANS: OpenID plugin server error. +msgid "Error saving the user." +msgstr "Houbo un erro ao gardar o usuario." + +#. TRANS: OpenID plugin client exception (403). +msgid "Unauthorized URL used for OpenID login." +msgstr "" +"Empregouse un enderezo URL non autorizado para acceder mediante o OpenID." + +#. TRANS: Title +msgid "OpenID Login Submission" +msgstr "Envío do rexistro do OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +msgid "Requesting authorization from your login provider..." +msgstr "Solicitando a autorización do provedor de acceso..." + +#. 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 "" +"Se non é redirixido ao provedor de acceso nuns segundos, probe premendo no " +"botón inferior." + +#. TRANS: Title for OpenID bridge administration page. +msgctxt "TITLE" +msgid "OpenID Settings" +msgstr "Configuración do OpenID" + +#. TRANS: Page instructions. +msgid "OpenID settings" +msgstr "Configuración do OpenID" + +#. TRANS: Client error displayed when OpenID provider URL is too long. +msgid "Invalid provider URL. Maximum length is 255 characters." +msgstr "" +"Enderezo URL do provedor incorrecto. A extensión máxima é de 255 caracteres." + +#. TRANS: Client error displayed when Launchpad team name is too long. +msgid "Invalid team name. Maximum length is 255 characters." +msgstr "Nome de equipo incorrecto. A extensión máxima é de 255 caracteres." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Trusted provider" +msgstr "Provedor de confianza" + +#. 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 "" +"Por defecto, os usuarios poden autenticarse con calquera provedor de OpenID. " +"Se usa o seu propio servizo de OpenID para un acceso compartido, pode " +"restrinxir o acceso unicamente aos seus usuarios." + +#. TRANS: Field label. +msgid "Provider URL" +msgstr "URL do provedor" + +#. TRANS: Field title. +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Todos os rexistros de OpenID enviaranse a este enderezo URL; non se poden " +"usar outros provedores." + +#. TRANS: Checkbox label. +msgid "Append a username to base URL" +msgstr "Engadir un nome de usuario ao enderezo URL base" + +#. 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 "" +"O formulario de rexistro ha mostrar o enderezo URL base e pedirá un nome de " +"usuario que engadir ao final. Utilice esta opción cando o enderezo URL do " +"provedor de OpenID deba ser a páxina de perfil para os usuarios individuais." + +#. TRANS: Field label. +msgid "Required team" +msgstr "Equipo solicitado" + +#. TRANS: Field title. +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Permitir unicamente o rexistro de usuarios pertencentes ao equipo " +"especificado (extensión Launchpad)." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Options" +msgstr "Opcións" + +#. TRANS: Checkbox label. +msgid "Enable OpenID-only mode" +msgstr "Activar o modo de OpenID só" + +#. TRANS: Checkbox title. +msgid "" +"Require all users to login via OpenID. Warning: disables password " +"authentication for all users!" +msgstr "" +"Obrigar a todos os usuarios a acceder mediante o OpenID. Aviso: Desactiva a " +"autenticación por contrasinal para todos os usuarios!" + +#. TRANS: Button text to save OpenID settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Button title to save OpenID settings. +msgid "Save OpenID settings." +msgstr "Gardar a configuración do OpenID." + +#. 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: Message in case a user tries to add an OpenID that is already connected to them. +msgid "You already have this OpenID!" +msgstr "Xa ten ese OpenID!" + +#. 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 "Outra persoa ten ese OpenID." + +#. TRANS: Message in case the OpenID object cannot be connected to the user. +msgid "Error connecting user." +msgstr "Houbo un erro ao conectar co usuario." + +#. TRANS: Message in case the user or the user profile cannot be saved in StatusNet. +msgid "Error updating profile." +msgstr "Houbo un erro ao actualizar o perfil." + +#. TRANS: Title after getting the status of the OpenID authorisation request. +msgid "OpenID Login" +msgstr "Rexistro do OpenID" + +#. TRANS: Title of OpenID settings page for a user. +msgctxt "TITLE" +msgid "OpenID settings" +msgstr "Configuración do OpenID" + +#. 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 "" +"O [OpenID](%%doc.openid%%) permite iniciar sesión en moitos sitios coa mesma " +"conta de usuario. Xestione as conexións OpenID asociadas desde aquí." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Add OpenID" +msgstr "Engadir o OpenID" + +#. TRANS: Form guide. +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se quere engadir un OpenID á súa conta, insíraa na caixa inferior e prema en " +"\"Engadir\"." + +#. TRANS: Button text for adding an OpenID URL. +msgctxt "BUTTON" +msgid "Add" +msgstr "Engadir" + +#. TRANS: Header on OpenID settings page. +msgctxt "HEADER" +msgid "Remove OpenID" +msgstr "Eliminar o OpenID" + +#. 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 "" +"Ao eliminar o seu único OpenID non poderá acceder ao sistema! Se necesita " +"eliminalo, engada outro OpenID primeiro." + +#. TRANS: Form guide. +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Pode eliminar un OpenID desde a súa conta premendo no botón \"Eliminar\"." + +#. TRANS: Button text to remove an OpenID. +#. TRANS: Button text to remove an OpenID trustroot. +msgctxt "BUTTON" +msgid "Remove" +msgstr "Eliminar" + +#. TRANS: Fieldset legend. +msgid "OpenID Trusted Sites" +msgstr "Sitios de confianza do OpenID" + +#. 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 "" +"Os seguintes sitios teñen permitido acceder á súa identidade e iniciarlle a " +"sesión. Pode eliminar un sitio da lista para impedirlle o acceso ao seu " +"OpenID." + +#. TRANS: Form validation error if no OpenID providers can be added. +msgid "Cannot add new providers." +msgstr "Non se poden engadir novos provedores." + +#. TRANS: Unexpected form validation error. +msgid "Something weird happened." +msgstr "Ocorreu algo estraño." + +#. TRANS: Form validation error when trying to remove a non-existing trustroot. +msgid "No such OpenID trustroot." +msgstr "Non existe esa raíz fiable do OpenID." + +#. TRANS: Success message after removing trustroots. +msgid "Trustroots removed." +msgstr "Raíces fiables eliminadas." + +#. TRANS: Form validation error for a non-existing OpenID. +msgid "No such OpenID." +msgstr "Non existe ese OpenID." + +#. TRANS: Form validation error if OpenID is connected to another user. +msgid "That OpenID does not belong to you." +msgstr "Ese OpenID non lle pertence." + +#. TRANS: Success message after removing an OpenID. +msgid "OpenID removed." +msgstr "OpenID eliminado." + +#. 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 "Non ten permiso para usar a identidade %s." + +#. 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 "" +"Unicamente un provedor de OpenID. Nada que ver aquí, siga o seu camiño..." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." msgstr "" +"Por razóns de seguridade, volva iniciar sesión co seu [OpenID](%%doc.openid%" +"%) antes de cambiar a súa configuración." #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "" +msgstr "Acceda cunha conta do [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. -#. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:122 finishaddopenid.php:187 +msgctxt "TITLE" msgid "OpenID Login" -msgstr "" +msgstr "Rexistro do OpenID" + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "OpenID provider" +msgstr "Provedor do OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:169 msgid "Remember me" msgstr "Lembrádeme" -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:171 +#. TRANS: OpenID plugin logon form field title. msgid "Automatically login in the future; not for shared computers!" msgstr "" +"Identificarse automaticamente no futuro. Non se aconsella en computadores " +"compartidos!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Acceder ao sistema" - -#: openidtrust.php:52 -msgid "OpenID Identity Verification" -msgstr "" - -#: openidtrust.php:70 -msgid "" -"This page should only be reached during OpenID processing, not directly." -msgstr "" - -#: openidtrust.php:118 -#, php-format -msgid "" -"%s has asked to verify your identity. Click Continue to verify your " -"identity and login without creating a new password." -msgstr "" - -#: openidtrust.php:136 -msgid "Continue" -msgstr "Continuar" - -#: openidtrust.php:137 -msgid "Cancel" -msgstr "Cancelar" - -#. TRANS: Client error message -#: finishaddopenid.php:68 -msgid "Not logged in." -msgstr "Non iniciou sesión." - -#. TRANS: message in case a user tries to add an OpenID that is already connected to them. -#: finishaddopenid.php:122 -msgid "You already have this OpenID!" -msgstr "" - -#. TRANS: message in case a user tries to add an OpenID that is already used by another user. -#: finishaddopenid.php:125 -msgid "Someone else already has this OpenID." -msgstr "" - -#. TRANS: message in case the OpenID object cannot be connected to the user. -#: finishaddopenid.php:138 -msgid "Error connecting user." -msgstr "" - -#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. -#: finishaddopenid.php:145 -msgid "Error updating profile" -msgstr "" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 2eb70f85f2..fb1e4c80f7 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index b3a3518181..851b7606a1 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" "Language-Team: Korean \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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 57d1f1183b..a73995f6e0 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index aa623bd737..2c10d8789d 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,8 +10,8 @@ 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:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 1aa9963380..4bdfa5d097 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 2bf3ebe1c9..560151a5de 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 0c8ff29917..1eb493bf7d 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 5a195db8d9..ba366d547f 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 d481c4e181..2b6cfaf716 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index 6a7237ea35..f9f69ff230 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 46009b0ae0..6e83e1d67e 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po new file mode 100644 index 0000000000..d6850da77d --- /dev/null +++ b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - OpenX 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 - OpenX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:07+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:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-openx\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title. +msgid "OpenX configuration." +msgstr "Configuración do OpenX." + +#. TRANS: Menu item for site administration +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Plugin description. +msgid "Plugin for OpenX Ad Server." +msgstr "" +"Complemento para o servidor de publicidade " +"OpenX." + +#. TRANS: Page title for OpenX admin panel. +msgctxt "TITLE" +msgid "OpenX" +msgstr "OpenX" + +#. TRANS: Instructions for OpenX admin panel. +msgid "OpenX settings for this StatusNet site" +msgstr "Configuración de OpenX para este sitio StatusNet" + +#. TRANS: Form label in OpenX admin panel. +msgid "Ad script URL" +msgstr "Enderezo URL da escritura do anuncio" + +#. TRANS: Tooltip for form label in OpenX admin panel. +msgid "Script URL" +msgstr "Enderezo URL da escritura" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +msgid "Medium rectangle" +msgstr "Rectángulo mediano" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +msgid "Medium rectangle zone" +msgstr "Zona rectangular mediana" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +msgid "Rectangle" +msgstr "Rectángulo" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +msgid "Rectangle zone" +msgstr "Zona rectangular" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +msgid "Leaderboard" +msgstr "Taboleiro de logros" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +msgid "Leaderboard zone" +msgstr "Zona do taboleiro de logros" + +#. TRANS: Form label in OpenX admin panel. Refers to advertisement format. +msgid "Skyscraper" +msgstr "Rañaceos" + +#. TRANS: Tooltip for form label in OpenX admin panel. Refers to advertisement format. +msgid "Wide skyscraper zone" +msgstr "Zona do rañaceos" + +#. TRANS: Submit button text in OpenX admin panel. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Submit button title in OpenX admin panel. +msgid "Save OpenX settings." +msgstr "Gardar a configuración do OpenX." diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index c35ce3dc68..5767beac32 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 023de82b67..ffe93bef67 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index 0244cfe2f3..a30708bfe1 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index 69ae31a56a..2fbfd5a6c2 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index e33645574a..a8c42d3fb4 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index 4dc76de462..859a5a5785 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 0366bd8244..d1e491e989 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index cf647c86ab..b0439b8997 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po index 8e52290295..d0ad2d4b7c 100644 --- a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index 858c469199..5eec25eebb 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index f68b2cad5e..92ca2a4411 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index 2dad78eee1..f442eca638 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index cc650f11da..35903b8e74 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index 71e34344a9..37d8875f4b 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 36bd57cbc7..de0f02d30c 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 9a02dda9bd..b07664c4bc 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index c71aa42c9a..45a35e942f 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index c88ec19413..1da8533352 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po index fabf789343..0aa663bb26 100644 --- a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index ff875366d4..c441cfbdf9 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index b49fb13d63..0c34d59076 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index 5025a76e11..c7f17f57c2 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 415e998285..f9de98aaf3 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 62b9910c83..6105c3aaa0 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 06d2c903bb..b186aafb4d 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index e5a4717540..20452a22cd 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index bfc31fb8db..9baad2e903 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 2402f5229b..a9f0eb5f16 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index e66dbe9b46..33ed24a1dc 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index e9504cf1ad..599a6d7027 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 7a75f38647..283c50a2e9 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 74a5b473b0..8a3af16bda 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index 639e36c2bd..3fcfc25f48 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index 6edaf5ed10..139afdf7cc 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po index e15afc60b6..cc5873bafe 100644 --- a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index 563e6b590c..94d0327e1f 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -13,13 +13,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po index 4df54d6494..307ca320d8 100644 --- a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:28+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po new file mode 100644 index 0000000000..34753f72db --- /dev/null +++ b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po @@ -0,0 +1,149 @@ +# Translation of StatusNet - Poll 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 - Poll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:28+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:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Non existe esa enquisa." + +#. TRANS: Client exception thrown trying to view a non-existing poll notice. +msgid "No such poll notice." +msgstr "Non existe esa nota de enquisa." + +#. 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 "Enquisa de %1$s: %2$s" + +#. TRANS: Field label on the page to create a poll. +msgid "Question" +msgstr "Pregunta" + +#. TRANS: Field title on the page to create a poll. +msgid "What question are people answering?" +msgstr "A que pregunta está respondendo a xente?" + +#. 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 "Opción %d" + +#. TRANS: Button text for saving a new poll. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting basic polls." +msgstr "Extensión simple para soportar enquisas básicas." + +#. TRANS: Exception thrown trying to respond to a poll without a poll reference. +msgid "Invalid poll response: No poll reference." +msgstr "Resposta á enquisa inválida: Sen referencia á enquisa." + +#. TRANS: Exception thrown trying to respond to a non-existing poll. +msgid "Invalid poll response: Poll is unknown." +msgstr "Resposta á enquisa inválida: Descoñécese a enquisa." + +#. 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 "Tipo inesperado para o complemento da enquisa: %s." + +#. TRANS: Error text displayed if no poll data could be found. +msgid "Poll data is missing" +msgstr "Faltan os datos da enquisa" + +#. TRANS: Application title. +msgctxt "APPTITLE" +msgid "Poll" +msgstr "Enquisa" + +#. 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 "Selección de enquisa inválido." + +#. 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 "votou \"%s\"" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Enviar" + +#. 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 "Enquisa: %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 "Enquisa: %s" + +#. TRANS: Title for poll page. +msgid "New poll" +msgstr "Nova enquisa" + +#. TRANS: Client exception thrown trying to create a poll while not logged in. +msgid "You must be logged in to post a poll." +msgstr "Ten que estar identificado para publicar unha enquisa." + +#. TRANS: Client exception thrown trying to create a poll without a question. +msgid "Poll must have a question." +msgstr "A enquisa debe ter unha pregunta." + +#. TRANS: Client exception thrown trying to create a poll with fewer than two options. +msgid "Poll must have at least two options." +msgstr "A enquisa debe ter, polo menos, dúas opcións." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "Publicouse a nota" + +#. TRANS: Page title for poll response. +msgid "Poll response" +msgstr "Resposta á enquisa" + +#. 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 "Ten que estar identificado para responder unha enquisa." + +#. TRANS: Client exception thrown trying to respond to a non-existing poll. +msgid "Invalid or missing poll." +msgstr "Falta a enquisa ou esta é inválida." + +#. TRANS: Page title after sending a poll response. +msgid "Poll results" +msgstr "Resultados da enquisa" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 4d479af4fe..26a7871045 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po index c701545583..31867d093d 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 5903194bbf..bc0e11e919 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index 7900efdf0e..a1ed7be7ff 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 3baa849a64..1f882b5290 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 53a52c82c2..5d8eb1bdcd 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index cc30177ab5..c4f6cfa4eb 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 91e057b618..974f76d9a3 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index d351610be4..9e7bb03d7b 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 6dbb1d448b..5a33957a82 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 20e02e0dd1..a33b6e1410 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po index 21d6387e21..35aa9ef1dc 100644 --- a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index ab3ed58d96..73578e36c1 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 739f4944f3..d3ad5add1f 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 12a26e501c..8b9206dfe4 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 76c92679a1..b441171f1f 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 1fb84d6afb..05c7828c20 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 680e02f106..fa9af44d8c 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index 7b35c489bf..c830384845 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 723421d8f8..7aad677420 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index c91f3c74ad..23106cd874 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 9f1b19771d..bdee92fcaa 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 99be772c61..f2094b48da 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 2025ee4077..938dce636c 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index fd3867d314..3102f777aa 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 00a8fbc669..d119c76b80 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 02c3873047..a5fa8d3a01 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index cf42da9fa7..030890b41a 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 931a66a654..6864bdaf7c 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po index 337e779729..563f0fc01f 100644 --- a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 644e703aa2..41c0ed28c7 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index 397dc6dbde..b3ddbc05f2 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po index dd20e94a1f..8da25ecb73 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index fb85299df0..63cc626adb 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 9e376b458e..6544d10ed5 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index e40765fb4d..a2342d542c 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 5ca6062301..2c285b8fcd 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 3af30db196..c188b5ae9b 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index 914dde28f0..f63ca25406 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:32+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 99b8965b5e..b7ee976d97 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index fa330bdd03..dfa04ba91d 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index a7dcf90176..c3c9befd2a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 dab172cd5f..c9a7729096 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po index 1f5ef4f226..f29f2179a0 100644 --- a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 141f81e507..8fc8f0737f 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 9675f2652b..f5f3b230ab 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 61f5ec4ad3..d4d337baf2 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 9ef167fb63..2cc7bae377 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 56a4181752..3f478c2feb 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ 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:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index ceeb977102..8aca963c67 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index a9301f6fb2..63ef3f48e8 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index 6f6655533d..31ef8ef394 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 63f5ce3d66..f82488feca 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index d030ab164e..b808676f64 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index c773f5869f..94822fa103 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 24ab87afd4..5054c476ff 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 0f6a3ed76a..6d03a4bfa3 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 6c3bb6f63e..948de4e858 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 1ba577637d..10c6fc69c6 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index 22614b5a20..5ec1e2df8e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 cf28b2d3f6..5d10a4bd5a 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index 5bde5b7ef6..266b51ce49 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po index 9081e64a6e..0615316b99 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 836794185d..78409f257a 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po index f449868b26..44809c12d7 100644 --- a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 126ecc6421..98b447cfe4 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ 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:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..b4d87692c2 --- /dev/null +++ b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po @@ -0,0 +1,306 @@ +# Translation of StatusNet - QnA 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 - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-qna\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Nova pregunta" + +#. TRANS: Client exception thrown trying to create a Question while not logged in. +msgid "You must be logged in to post a question." +msgstr "Ten que estar identificado para publicar unha pregunta." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "A pregunta debe ter un título." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "Pregunta publicada" + +#. 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 "Non existe tal resposta." + +#. TRANS: Client exception thrown when requesting an answer that has no connected question. +msgid "No question for this answer." +msgstr "Non hai pregunta ningunha para esta resposta." + +#. 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 "Non existe tal usuario." + +#. 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 "Usuario sen perfil." + +#. 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 "Resposta de %1$s a \"%2$s\"" + +#. TRANS: Page title for revising a question +msgid "Revise answer" +msgstr "Revisar a resposta" + +#. 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 "Ten que estar identificado para responder unha pregunta." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing answer." +msgstr "Falta a resposta ou esta é inválida." + +#. 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 "Resposta" + +#. TRANS: Form title for sending an answer. +msgctxt "TITLE" +msgid "Answer" +msgstr "Resposta" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "Non existe esa pregunta." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "Non existe a nota desa pregunta." + +#. 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 "Pregunta de %1$s: %2$s" + +#. TRANS: Page title for close a question +msgid "Close question" +msgstr "Pechar unha 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 "Ten que estar identificado para pechar unha pregunta." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Falta a pregunta ou esta é inválida." + +#. TRANS: Exception thrown trying to close another user's question. +msgid "You did not ask this question." +msgstr "Vostede non formulou esta pregunta." + +#. TRANS: Page title after sending an answer. +#. TRANS: Page title after sending in a vote for a question or answer. +msgid "Answers" +msgstr "Respostas" + +#. TRANS: Page title after an AJAX error occurs on the post answer page. +msgid "Ajax Error" +msgstr "Houbo un erro de AJAX" + +#. TRANS: Title for form to send answer to a question. +msgctxt "TITLE" +msgid "Your answer" +msgstr "A súa resposta" + +#. 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 "Faltan os datos da resposta." + +#. TRANS: Plugin description. +msgid "Question and Answers micro-app." +msgstr "Microaplicación de preguntas e respostas." + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Question" +msgstr "Pregunta" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Demasiados obxectos de actividade." + +#. TRANS: Exception thrown when an incorrect object type is encountered. +msgid "Wrong type for object." +msgstr "Tipo incorrecto para o obxecto." + +#. TRANS: Exception thrown when answering a non-existing question. +msgid "Answer to unknown question." +msgstr "Resposta a unha pregunta descoñecida." + +#. TRANS: Exception thrown when an object type is encountered that cannot be handled. +msgid "Unknown object type." +msgstr "Tipo de obxecto descoñecido." + +#. TRANS: Exception thrown when requesting a non-existing question notice. +msgid "Unknown question notice." +msgstr "Nota de pregunta descoñecida." + +#. 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 "" +"Tipo inesperado para o complemento da microaplicación de preguntas e " +"respostas: %s." + +#. TRANS: Error message displayed when question data is not present. +msgid "Question data is missing." +msgstr "Faltan os datos da pregunta." + +#. TRANS: Placeholder value for a possible answer to a question +#. TRANS: by the logged in user. +msgid "Your answer..." +msgstr "A súa resposta..." + +#. 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 "máis..." + +#. 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 "Non hai ningunha pregunta co ID %s" + +#. 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 "Non hai ningún perfil co ID %s" + +#. TRANS: %s is the number of answer revisions. +#, php-format +msgid "%s revision" +msgid_plural "%s revisions" +msgstr[0] "%s revisión" +msgstr[1] "%s revisións" + +#. 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 respondeu a pregunta \"%2$s\": %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 "respondeu \"%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] "%s resposta" +msgstr[1] "%s respostas" + +#. TRANS: Notification that a question cannot be answered anymore because it is closed. +msgid "This question is closed." +msgstr "Esta pregunta está pechada." + +#. 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 "Pregunta: %s" + +#. TRANS: Button text for submitting a revised answer. +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Enviar" + +#. TRANS: Field label. +msgid "Enter your answer" +msgstr "Insira a súa resposta" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Answer" +msgstr "Responder" + +#. TRANS: Field label for a new question. +msgctxt "LABEL" +msgid "Title" +msgstr "Título" + +#. TRANS: Field title for a new question. +msgid "The title of your question." +msgstr "O título da súa pregunta." + +#. TRANS: Field label for question details. +msgctxt "LABEL" +msgid "Description" +msgstr "Descrición" + +#. TRANS: Field title for question details. +msgid "Your question in detail." +msgstr "Os detalles da súa pregunta." + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Form legend for revising the answer. +msgctxt "LEGEND" +msgid "Question" +msgstr "Pregunta" + +#. TRANS: Button text for closing a question. +msgctxt "BUTTON" +msgid "Close" +msgstr "Pechar" + +#. TRANS: Title for button text for closing a question. +msgid "Close the question to no one can answer it anymore." +msgstr "Pechar a pregunta de xeito que ninguén poida enviar máis respostas." + +#. TRANS: Button text for marking an answer as "best". +msgctxt "BUTTON" +msgid "Best" +msgstr "Mellor" + +#. TRANS: Title for button text marking an answer as "best". +msgid "Mark this answer as the best answer." +msgstr "Marcar esta resposta como a mellor." diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index 2f7551d6ad..cd8b19283d 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po index 63d8579d7b..80197cc1e3 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:38+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index 3e25328438..95ed3ff72a 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index c84ba31fc7..1b9e892abc 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po index c43c6992f3..291f26697f 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:39+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index 02d5f87f64..9be0f83d8c 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index c2814519c1..843d47c672 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 56fff70abe..07d8daa05e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 a78787f6d6..83d49114a2 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 99c8388cae..81fae4f6a2 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:35+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -72,7 +72,6 @@ msgid "Feed subscription failed: Not a valid feed." msgstr "L’abonnement au flux a échoué : ce n’est pas un flux RSS valide." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" diff --git a/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..8001a48cd0 --- /dev/null +++ b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,92 @@ +# Translation of StatusNet - RSSCloud 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 - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Form validation error displayed when a URL parameter is missing. +msgid "A URL parameter is required." +msgstr "Cómpre un parámetro de enderezo URL." + +#. TRANS: Form validation error displayed when HTTP GET is not used. +msgid "This resource requires an HTTP GET." +msgstr "Este recurso necesita unha solicitude HTTP GET." + +#. TRANS: Form validation error displayed when HTTP POST is not used. +msgid "This resource requires an HTTP POST." +msgstr "Este recurso necesita unha solicitude HTTP POST." + +#. TRANS: Form validation error displayed when POST is not used. +msgid "Request must be POST." +msgstr "A solicitude debe ser POST." + +#. TRANS: Form validation error displayed when HTTP POST is not used. +msgid "Only HTTP POST notifications are supported at this time." +msgstr "Nestes intres, unicamente as notificacións HTTP POST están soportadas." + +#. TRANS: List separator. +msgctxt "SEPARATOR" +msgid ", " +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: ", "). +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "Faltan os seguintes parámetros no corpo da solicitude: %s." + +#. TRANS: Form validation error displayed when not providing any valid profile feed URLs. +msgid "" +"You must provide at least one valid profile feed URL (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Debe proporcionar, polo menos, un enderezo URL de fonte de novas de perfil " +"válido (url1, url2, url3, ..., urlN)." + +#. TRANS: Form validation error displayed when not providing a valid feed URL. +msgid "Feed subscription failed: Not a valid feed." +msgstr "" +"Erro na subscrición á fonte de novas: Non é unha fonte de novas válida." + +#. TRANS: Form validation error displayed when feed subscription failed. +msgid "" +"Feed subscription failed: Notification handler does not respond correctly." +msgstr "" +"Erro na subscrición á fonte de novas: O xestor de notificacións non responde " +"correctamente." + +#. TRANS: Success message after subscribing to one or more feeds. +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Grazas pola subcrición. Cando o(s) filtro(s) se actualice(n), recibirá unha " +"notificación." + +#. TRANS: Plugin description. +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"O complemento RSSCloud activa a súa instancia StatusNet para publicar " +"actualizacións en tempo real para as fontes de novas RSS dos perfís mediante " +"o protocolo RSSCloud." diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 38bfb15038..0bef072d85 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 9ded06f797..c1a4cc82cc 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 20b1091d9c..03a3e223b1 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index adc0d4a39c..8190756085 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 09346b8cd2..ff58d10ebc 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index bdd237753a..c1ab3929f2 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 fd2ca668ac..6fa3f908c3 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:40+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index e589fbfdc0..587666756f 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:40+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index e69a2f59af..f955f7c1ed 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 9884db7258..853c44ed3b 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 27219cc93b..12e3acfe83 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index f9c2e6d01c..e082597d12 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po new file mode 100644 index 0000000000..8ef590a6b1 --- /dev/null +++ b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po @@ -0,0 +1,65 @@ +# Translation of StatusNet - Realtime 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 - Realtime\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-realtime\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception. Do not translate POST. +msgid "You have to POST it." +msgstr "Ten que publicalo con POST." + +#. TRANS: Client exception thrown when the channel key argument is missing. +msgid "No channel key argument." +msgstr "Sen argumento para a clave de canle." + +#. TRANS: Client exception thrown when referring to a non-existing channel. +msgid "No such channel." +msgstr "Non hai tal canle." + +#. TRANS: Text label for realtime view "play" button, usually replaced by an icon. +msgctxt "BUTTON" +msgid "Play" +msgstr "Reproducir" + +#. TRANS: Tooltip for realtime view "play" button. +msgctxt "TOOLTIP" +msgid "Play" +msgstr "Reproducir" + +#. TRANS: Text label for realtime view "pause" button +msgctxt "BUTTON" +msgid "Pause" +msgstr "Pausar" + +#. TRANS: Tooltip for realtime view "pause" button +msgctxt "TOOLTIP" +msgid "Pause" +msgstr "Pausar" + +#. TRANS: Text label for realtime view "popup" button, usually replaced by an icon. +msgctxt "BUTTON" +msgid "Pop up" +msgstr "Ventá emerxente" + +#. TRANS: Tooltip for realtime view "popup" button. +msgctxt "TOOLTIP" +msgid "Pop up in a window" +msgstr "Mostrar nunha ventá emerxente" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index affaae0fd1..46de48801e 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 4c82e793bc..6b3b9cb010 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:40+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lv\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 63eade171f..4f0cb305ac 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 8dce3cc8cc..9df7a47916 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:41+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ne\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index b380430157..99e87d7c7f 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po index 97ede495fa..b48ac742cb 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:41+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index e814b81112..9e9683d7c2 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:41+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index f136149265..167b05fd29 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 08f1d6bcc6..01624c8a93 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index f1e615b34c..ca9bd01613 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index dfd45edc8e..00436fdcde 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 284d1aa9c5..905c26b36f 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 9770c52f8d..7343e4d57b 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 048cd2a747..3e99387b51 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index ae38fdb07e..ea8c54228d 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..f250d84877 --- /dev/null +++ b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - Recaptcha 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 - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Field label. +msgid "Captcha" +msgstr "Captcha" + +#. TRANS: Error message displayed if a provided captcha response does not match. +msgid "Captcha does not match!" +msgstr "O captcha non coincide!" + +#. TRANS: Plugin description. +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Usa o servizo Recaptcha para engadir o " +"captcha á páxina de rexistro." diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 23965d2e92..b4843e53d1 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index c0a8e96a99..5906e966cd 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 22a506fdb6..165474bcd3 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index 917f25acb2..bb7d023ba9 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po index f929831408..79cd6e0cad 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 6083bb7775..bb06fe0de8 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index dc0312e6bf..d42f6223af 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index 0eca2a7097..6be68cbf28 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:42+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index 1526011df0..ace5241ead 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 3e6c40ac98..c1431879d2 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index ba20bf4d2f..b79a9b2454 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 index 87adad0e85..5892ea61d8 100644 --- a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index c462fb8a3b..36146932d7 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index a7b560df6d..5796ee36ee 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..c2d1a861b2 --- /dev/null +++ b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - RegisterThrottle 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 - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Non se pode atopar o enderezo 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 "Demasiados rexistros. Faga unha pausa e inténteo máis tarde." + +#. 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 "Un usuario bloqueado rexistrouse desde este enderezo." + +#. TRANS: Plugin description. +msgid "Throttles excessive registration from a single IP address." +msgstr "Evita a exceciva creación de contas desde un mesmo enderezo IP." diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 1e6298821e..3cc99ec389 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index e3c8d22fc0..253e11aff7 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 50771c35fa..de34df8b25 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:31+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 980f41c1d9..46cd3cdf31 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:31+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:44+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index a24253a695..5b3e911d1d 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:31+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 16e0b6b3e1..30b57f87f0 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 dff83a2518..01f303519d 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:45+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po index 3f40764d35..35cbdff114 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po index 6a4f05431d..2739ff1552 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:45+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 96395ecea7..4a7ebfec2f 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index 4fb47d881a..e45d54dbcc 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Brunoperel +# Author: Crochet.david # Author: Od1n # Author: Peter17 # -- @@ -11,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -103,7 +104,6 @@ msgid "Same as password above." msgstr "Identique au mot de passe ci-dessus." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "Enregistrer" +msgstr "Sauvegarder" diff --git a/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..bfa4f30871 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - RequireValidatedEmail 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 - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when trying to post notices before validating an e-mail address. +msgid "You must validate your email address before posting." +msgstr "Debe validar o enderezo de correo electrónico antes de publicar." + +#. TRANS: Client exception thrown when trying to register without providing an e-mail address. +msgid "You must provide an email address to register." +msgstr "Debe proporcionar un enderezo de correo electrónico para se rexistrar." + +#. TRANS: Plugin description. +msgid "Disables posting without a validated email address." +msgstr "" +"Desactiva a publicación de mensaxes sen un enderezo de correo electrónico " +"validado." + +#. TRANS: Client exception thrown when trying to register while already logged in. +msgid "You are already logged in." +msgstr "Xa está identificado." + +#. TRANS: Client exception thrown when trying to register with a non-existing confirmation code. +msgid "Confirmation code not found." +msgstr "Non se atopou o código de confirmación." + +#. 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 "Non hai usuario ningún para ese código de confirmación." + +#. 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 "Non se recoñeceu o tipo de enderezo %s." + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "Ese enderezo xa se confirmou." + +#. TRANS: Client exception thrown when trying to register with too short a password. +msgid "Password too short." +msgstr "O contrasinal é curto de máis." + +#. TRANS: Client exception thrown when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "Os contrasinais non coinciden." + +#. TRANS: Form instructions. %s is the nickname of the to be registered user. +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" +"Confirmou o enderezo de correo electrónico da nova conta de usuario %s. " +"Empregue o formulario inferior para definir o seu novo contrasinal." + +#. TRANS: Page title. +msgid "Set a password" +msgstr "Definir un contrasinal" + +#. TRANS: Form legend. +msgid "Confirm email address" +msgstr "Confirmar o enderezo de correo electrónico" + +#. TRANS: Field label. +msgid "New password" +msgstr "Novo contrasinal" + +#. TRANS: Field title for password field. +msgid "6 or more characters." +msgstr "Seis ou máis caracteres." + +#. TRANS: Field label for repeat password field. +msgctxt "LABEL" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field title for repeat password field. +msgid "Same as password above." +msgstr "Igual ao contrasinal anterior." + +#. TRANS: Button text for completing registration by e-mail. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 3b4b205df2..3b5f730667 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 20b182a892..56741ec067 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index ec3476be71..11f550755a 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po index 1cb03ddecc..f47f3c0740 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:46+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 1863578fc5..11e32f63b0 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 68477b4171..7165195bd2 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 7b500d768a..732bde2f6e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 835d047b08..596a775b3d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 8f9b9d6a16..00999913c6 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po index 4c743fd311..dd9440ffe1 100644 --- a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:46+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 8a575d7f59..dc273d89d5 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index b48261bd6d..24282ca987 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 16dce6138a..1adf5b3676 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:47+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index db3361d7df..ae7fb32317 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:47+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index f2e9dd70e3..754e3b07ac 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 3d9e730791..a329e98f21 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index eacd93b77b..5b2178e4a2 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 35bd91a1f5..0607f6b83c 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 7acaf4980a..8b359973b3 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 8a8b76ee1d..d070f695fc 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 13722db4f4..1d956fa75d 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 4e9112ee7b..d1d6d545c1 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 7c9dbf6b3b..18416ac500 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po index b6ff2ed76f..2b16646250 100644 --- a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index bdca389efc..1fc6c59af4 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index a17b9d600e..b6283aa87d 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 8077fea630..ee0a11fafb 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 4900c8dde2..80f939a603 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 4e31a7062e..0fe2ffe698 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index 1e515d4446..d28bedd55c 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index 0342ce4702..c2e1cfd551 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index 9f4d816d5b..0d7eb26658 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index 8d7f618e02..cb4200a7eb 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 f8bf6e5849..2f08cc9dd9 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index 91e7e58919..6cd4b4a9cd 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po index 88f40271c5..0047790c73 100644 --- a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index 85592bbeb8..fb6535bdde 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index d4561b60f7..477f47f3bc 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index f7ec8452a2..f855e6e5e8 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:05+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index 1134546b4d..d805cbe21b 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index 9b18d5ab5b..cd501b8a05 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index 89c52b714d..9e7dc359b1 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index 11cc143093..64a984787e 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 421a3096d6..e7b3742bf1 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 5af891e128..619db925e3 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:50+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index ebf4600c78..9f12bd0e51 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:50+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 67ffc4df73..4f9706ba52 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index df786477c8..212711722c 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 15fc4fe075..6344202381 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index d340ed6f4a..44ea84d4d2 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po index 4e7b02053d..91c3621fe7 100644 --- a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po @@ -1,5 +1,5 @@ # Translation of StatusNet - Sample to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,61 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:53+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:43:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#: User_greeting_count.php:164 -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#: User_greeting_count.php:177 -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" - -#: SamplePlugin.php:259 hello.php:111 +#. TRANS: Page title for sample plugin. +#. TRANS: Menu item in sample plugin. msgid "Hello" msgstr "Ola" -#: SamplePlugin.php:259 -msgid "A warm greeting" -msgstr "" - -#: SamplePlugin.php:270 -msgid "A sample plugin to show basics of development for new hackers." -msgstr "" - -#: hello.php:113 +#. TRANS: Page title for sample plugin. %s is a user nickname. #, php-format msgid "Hello, %s!" -msgstr "" +msgstr "Ola, %s!" -#: hello.php:133 +#. TRANS: Message in sample plugin. msgid "Hello, stranger!" -msgstr "" +msgstr "Ola, estraño!" -#: hello.php:136 +#. TRANS: Message in sample plugin. %s is a user nickname. #, php-format msgid "Hello, %s" msgstr "Ola, %s" -#: hello.php:138 +#. TRANS: Message in sample plugin. +#. TRANS: %d is the number of times a user is greeted. #, php-format msgid "I have greeted you %d time." msgid_plural "I have greeted you %d times." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Saudeino %d vez." +msgstr[1] "Saudeino %d veces." + +#. TRANS: Menu item title in sample plugin. +msgid "A warm greeting" +msgstr "Un cordial saúdo" + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un complemento de exemplo para mostrar os principios básicos de " +"desenvolvemento aos novos programadores." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Non se puido gardar o número de saúdos enviados a %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Non se puido incrementar o número de saúdos enviados a %d." diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index 9c0a65315e..5ac557bd37 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index 0d59b3ab3c..bde7793b7a 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:50+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index aade3ce5ad..8dcf997c15 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index 5f6d8ef063..033d0741e5 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index b137169c8d..670208f38a 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:51+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pdc\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 5283eb4c88..fc0ccc1e58 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 3ce28a6715..ce6138bd6b 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 40fc605f10..ad1498193a 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index ab83ecb2a2..e60795f9ec 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index 69954a0b9b..2d61704795 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 index 4e3fe98bbb..33e7beec3a 100644 --- a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 4cb6c489a0..3a5754fa17 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index 235bba44a0..ed5d3e6f48 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,13 +11,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po new file mode 100644 index 0000000000..27e9f4b75c --- /dev/null +++ b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po @@ -0,0 +1,227 @@ +# Translation of StatusNet - SearchSub 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 - SearchSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:54+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:20:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "Subscricións a procuras 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 "Subscricións a procuras de %1$s, páxina %2$d" + +#. TRANS: Page notice for page with an overview of all search subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site matching the " +"following searches:" +msgstr "" +"Subscribiuse para recibir todas as notas do sitio que conteñan as seguintes " +"procuras:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site matching the following " +"searches:" +msgstr "" +"%s subscribiuse para recibir todas as notas do sitio que conteñan as " +"seguintes procuras:" + +#. 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 "" +"Non está a seguir ningunha procura nestes intres. Pode premer no botón " +"\"Subscribirse\" de calquera procura de texto para recibir automaticamente " +"calquera mensaxe pública deste sitio que coincida coa procura, mesmo se non " +"está subscrito ao autor." + +#. TRANS: Search subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no search subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not subscribed to any searches." +msgstr "%s non está subscrito a ningunha procura." + +#. TRANS: Search subscription list item. %1$s is a URL to a notice search, +#. TRANS: %2$s are the search criteria, %3$s is a datestring. +#, php-format +msgid "\"%2$s\" since %3$s" +msgstr "\"%2$s\" desde %3$s" + +#. 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 "Non está a seguir a procura \"%s\"." + +#. 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 "Non se puido rematar a subscrición á procura para a pescuda \"%s\"." + +#. 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 "Xa non está subscrito á procura \"%s\"." + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "Esta acción só permite solicitudes POST." + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Non iniciou sesión." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Non existe ese perfil." + +#. TRANS: Page title when search subscription succeeded. +msgid "Subscribed" +msgstr "Subscrito" + +#. TRANS: Form legend. +msgid "Unsubscribe from this search" +msgstr "Cancelar a subscrición a esta procura" + +#. TRANS: Button text for unsubscribing from a text search. +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Cancelar a subscrición" + +#. TRANS: Button title for unsubscribing from a text search. +msgid "Unsubscribe from this search." +msgstr "Cancelar a subscrición a esta procura." + +#. TRANS: Page title when search unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Cancelouse a subscrición" + +#. 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 "Xa está a seguir a procura \"%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 "Non se puido iniciar a subscrición á procura para a pescuda \"%s\"." + +#. TRANS: Message given having added a search subscription by track command. +#, php-format +msgid "You are subscribed to the search \"%s\"." +msgstr "Está subscrito á procura \"%s\"." + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given search." +msgstr "" +"Complemento para permitir seguir todas as mensaxes cunha procura " +"especificada." + +#. TRANS: SearchSub plugin menu item on user settings page. +#. TRANS: Sub menu for searches. +msgctxt "MENU" +msgid "Searches" +msgstr "Procuras" + +#. TRANS: SearchSub plugin tooltip for user settings menu item. +msgid "Configure search subscriptions" +msgstr "Configurar as subscricións ás procuras" + +#. TRANS: Help message for IM/SMS command "track " +msgctxt "COMMANDHELP" +msgid "Start following notices matching the given search query." +msgstr "Comezar a seguir as notas que coincidan coa pescuda especificada." + +#. TRANS: Help message for IM/SMS command "untrack " +msgctxt "COMMANDHELP" +msgid "Stop following notices matching the given search query." +msgstr "Deixar de seguir as notas que coincidan coa pescuda especificada." + +#. 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 "Desactivar todas as subscricións ás procuras que está a seguir." + +#. 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 "Listar todas as subscricións a procuras." + +#. 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 "Non está a seguir a procura ningunha." + +#. 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 "Está a seguir as procuras de: \"%s\"." + +#. TRANS: Form legend. +msgid "Subscribe to this search" +msgstr "Subscribirse a esta procura" + +#. TRANS: Button text for subscribing to a search. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribirse" + +#. TRANS: Button title for subscribing to a search. +msgid "Subscribe to this search." +msgstr "Subscribirse a esta procura." + +#. 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 "Erro ao desactivar a subscrición á procura da pescuda \"%s\"." + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +msgid "Disabled all your search subscriptions." +msgstr "Desactivar todas as subscricións a procuras." diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index a5426941ab..76b2a31b14 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 47297b115a..76e49dc9bc 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:41+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 5e256f8475..ed76ee232f 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 6d67bb638e..72153ce315 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index 7bade7d40c..0dfb938d6d 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 883d778ebb..a249d5e9b3 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 6ee566097c..499ea9d2c4 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:55+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 9f6020cc58..0fe725f3af 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index cece9609ba..89d0e907e0 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index c171d03775..5baa2ad1db 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index 266b6a647a..d56f1bb492 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index d4d7d464e1..1d4b41c64e 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..185aaa23f9 --- /dev/null +++ b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - ShareNotice 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 - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-18 16:20:40+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Truncation symbol. +msgid "…" +msgstr "…" + +#. TRANS: Tooltip for image to share a notice on Twitter. +msgid "Share on Twitter" +msgstr "Compartir no Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#, php-format +msgid "Share on %s" +msgstr "Compartir en %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +msgid "Share on Facebook" +msgstr "Compartir no Facebook" + +#. TRANS: Plugin description. +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Este complemento permite compartir notas no Twitter, Facebook e outras " +"plataformas." diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 95a35d6fb9..f283649b78 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index 790dfbb0dc..a550d61d9a 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 7fc8fd8b43..d4c979c646 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po index be87ceb1e7..a5597dafc1 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 3f2ab8ead5..947ac1585c 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:56+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index b7b3120879..df548914e9 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index 6bca38ba4b..c9fd6ba1aa 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:56+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 9d2b93db78..c1b368956d 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index ea8d30738c..c54d212f9b 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 0b960dd2da..4f7bb47b9a 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index abb1e4c8d6..c6378e6a69 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index dfdd897a2b..f2fb4fec43 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index edd6d10697..8e63bc8753 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 9e9f552504..06274715db 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index 77a68ee456..fdbf2b4dda 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -24,7 +24,7 @@ msgstr "" #. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "Debe especificar un serviceUrl." +msgstr "Cómpre especificar un serviceUrl." #. TRANS: Plugin description. #, php-format diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 3f96ff2d18..2545803a89 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 87cd55c3b7..435dcca22e 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 7c1d381ca9..6191f62beb 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 2f8a36e288..8c8ad28d29 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 8eba959c96..1de37fca5f 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 5777fc1c63..43c7efedaa 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index c09809dcf4..1623fed452 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 82014ae8a0..7dff49ecdb 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 4b94e1b7bd..b75879431d 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 342b30bb0b..31b4395b89 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index c23e259696..d1c759b69e 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index d196835a0e..23073e182a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 cb100737c7..184d55a882 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index 102775284d..9fc442a837 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index b4a66087d2..3900ece3e0 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:46: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..6be8a2401b --- /dev/null +++ b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po @@ -0,0 +1,79 @@ +# Translation of StatusNet - Sitemap 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 - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for sitemap. +msgid "Sitemap" +msgstr "Mapa do sitio" + +#. TRANS: Instructions for sitemap. +msgid "Sitemap settings for this StatusNet site" +msgstr "Configuración de mapa do sitio para este sitio StatusNet" + +#. TRANS: Field label. +msgid "Google key" +msgstr "Clave Google" + +#. TRANS: Title for field label. +msgid "Google Webmaster Tools verification key." +msgstr "Clave de verificación para as ferramentas de Google Webmaster." + +#. TRANS: Field label. +msgid "Yahoo key" +msgstr "Clave Yahoo" + +#. TRANS: Title for field label. +msgid "Yahoo! Site Explorer verification key." +msgstr "Clave de verificación para o explorador de sitios de Yahoo!" + +#. TRANS: Field label. +msgid "Bing key" +msgstr "Clave Bing" + +#. TRANS: Title for field label. +msgid "Bing Webmaster Tools verification key." +msgstr "Clave de verificación para as ferramentas de Bing Webmaster." + +#. TRANS: Submit button text to save sitemap settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Submit button title to save sitemap settings. +msgid "Save sitemap settings." +msgstr "Gardar a configuración do mapa do sitio." + +#. TRANS: Menu item title/tooltip +msgid "Sitemap configuration" +msgstr "Configuración do mapa do sitio" + +#. TRANS: Menu item for site administration +msgctxt "MENU" +msgid "Sitemap" +msgstr "Mapa do sitio" + +#. TRANS: Plugin description. +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Este complemento permite a creación de mapas do sitio para Bing, Yahoo! e " +"Google." diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index f6c6a77744..11e1212cd8 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index c159513a27..4ee94ea20f 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 120af3be84..f682017500 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 677d885dfc..7d88ea651f 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 7bb97d08ad..67d7d1b640 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 48c6e7b357..5b450e9280 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 193b59879d..035e7b7517 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 789a321f42..d016574b37 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index c89a1caf29..34b7e0929d 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po index 296fa01a16..6effd22d31 100644 --- a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:01+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 917c3539e5..d9ad389212 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,13 +10,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:01+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index fac6465169..5379f0fd6b 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index 1e09bf084a..0d65087e42 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:01+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 8bf83f7505..67789584b8 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 07fbb4a54a..4feb600b8b 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index c9930c77b9..bf3a29e3b4 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 99c61436c2..c646669f03 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 58b3cfa6df..71223fbd48 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index 7e8c846896..3114a13253 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 e6ca483d8b..a20d7bfb32 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 66e48da92d..8e6663b3f8 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..0af98738f6 --- /dev/null +++ b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - SphinxSearch 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 - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception thrown when a database name cannot be identified. +msgid "Sphinx search could not identify database name." +msgstr "A procura Sphinx non puido identificar o nome da base de datos." + +#. TRANS: Server exception. +msgid "Sphinx PHP extension must be installed." +msgstr "Cómpre que a extensión PHP Sphinx estea instalada." + +#. TRANS: Plugin description. +msgid "Plugin for Sphinx search backend." +msgstr "Complemento para o motor de procuras Sphinx." diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 7a69137565..ce8e30dadf 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 79b69a18a8..13f1faf96c 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 2d73d54f9a..4c417a27d6 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 10436a2094..b27d749a33 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 7943f4abf4..69f0e6bc49 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 8ec432b067..71e8c85413 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot index edc8f6dbcc..0c9629cdf1 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 ff1a5349f2..3dd8a0cb2d 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po index 738b06aef7..fcbdb35bec 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:03+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po index 7f9e93dd70..ed4c3fd56e 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:03+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po index 7aaff92e97..55ddc7bd32 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po index 80b1797670..868559ef49 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po index a634f6f664..2335d33fc3 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po index 857ed9f39f..6e6466cca0 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index 4a8c8dc9b4..63f7fb7fd8 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 d2b3a518bd..c2f74fb851 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index ba734e4dd5..f25dd151ba 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po index f4438f8c44..4de3fdd880 100644 --- a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index b394536d5b..80ca4d36ca 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index f1aada4a3a..e10b6bd9ff 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index b3647d581f..0756685c65 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index c76696ad6a..48aec498f6 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index f6fbfb0998..8d3d725189 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index dbfa7835fd..d31172cef2 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index cb05fad801..df56523d29 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:54+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 08da4c74e2..3b3df12230 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po index d59a0f7497..df61ac50eb 100644 --- a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:08+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index d3ff193a51..8fd863771e 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index d9af452bfd..d384e2f3a4 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ 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" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..065be66219 --- /dev/null +++ b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po @@ -0,0 +1,169 @@ +# Translation of StatusNet - SubMirror 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 - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-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 "URL de fonte de novas non válido: %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 "Perfil inválido para a republicación." + +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. +msgid "Cannot mirror a StatusNet group at this time." +msgstr "Non se pode republicar un grupo de StatusNet nestes intres." + +#. TRANS: Client error displayed when trying to use another method than POST. +msgid "This action only accepts POST requests." +msgstr "Esta acción só permite solicitudes POST." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. 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: Page title for subscribed feed mirror. +msgid "Subscribed" +msgstr "Subscrito" + +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. +msgid "Requested invalid profile to edit." +msgstr "O perfil que solicitou editar é inválido." + +#. TRANS: Client error displayed when providing invalid input when editing a mirror. +msgid "Bad form data." +msgstr "Datos de formulario incorrectos." + +#. 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 "" +"A solicitude de republicación fallou porque non se obtivo ningún resultado." + +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "Erro interno no formulario: Provedor de fonte de novas non recoñecido." + +#. TRANS: Exception thrown when a subscribing to a feed fails. +msgid "Could not subscribe to feed." +msgstr "Non se puido subscribir á fonte de novas." + +#. TRANS: Page title. +msgid "Feed mirror settings" +msgstr "Configuración da republicación de fontes de novas" + +#. TRANS: Page instructions. +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Pode republicar as actualizacións de moitas fontes de novas RSS e Atom na " +"súa liña do tempo de StatusNet!" + +#. TRANS: Title for page with form to add a mirror feed provider on. +msgid "Provider add" +msgstr "Adición dun provedor" + +#. TRANS: Plugin description. +msgid "Pull feeds into your timeline!" +msgstr "Importar as fontes de novas na súa liña do tempo!" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Mirroring" +msgstr "Republicación" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure mirroring of posts from other feeds" +msgstr "Configurar a republicación de mensaxes doutras fontes de novas" + +#. TRANS: Label in profile statistics section, followed by a count. +msgid "Mirrored feeds" +msgstr "Fontes de novas republicadas" + +#. TRANS: Field label. +msgid "Web page or feed URL:" +msgstr "Enderezo URL da páxina web ou da fonte de novas:" + +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Engadir unha fonte de novas" + +#. TRANS: Field label. +msgid "Twitter username:" +msgstr "Nome de usuario do Twitter:" + +#. TRANS: Field label (URL expectected). +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Fonte de novas remota:" + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "Local user" +msgstr "Usuario local" + +#. TRANS: Fieldset legend for feed mirror setting. +msgid "Mirroring style" +msgstr "Estilo de republicación" + +#. TRANS: Feed mirror style (radio button option). +msgid "" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" +msgstr "" +"Repetir: Referenciar a publicación do usuario orixinal (ás veces móstrase " +"como \"RT @bla\")" + +#. TRANS: Feed mirror style (radio button option). +msgid "Repost the content under my account" +msgstr "Volver publicar o contido baixo a miña conta" + +#. TRANS: Button text to save feed mirror settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Button text to stop mirroring a feed. +msgctxt "BUTTON" +msgid "Stop mirroring" +msgstr "Deixar de republicar" + +#. TRANS: Name for possible feed provider. +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Name for possible feed provider. +msgid "RSS or Atom feed" +msgstr "Fonte de novas RSS ou Atom" + +#. TRANS: Heading for feed mirroring selection form. +msgid "Select a feed provider" +msgstr "Seleccione un provedor de fonte de novas" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 5c48789301..d34899d372 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index e6989e28e5..4d6b71aaa2 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index b7f91a8dad..81ded7ee5d 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:56+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index c06ee3c1fd..3cb8d928ea 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index a527cfd482..11b56d6719 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 52756e1bd1..5b687fb102 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 a73b7703a6..139c350a2d 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 96602387a7..83352478d4 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index c63d16bd0d..87c66bf45f 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..6684ff31bc --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - SubscriptionThrottle 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 - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when subscribing too quickly. +msgid "Too many subscriptions. Take a break and try again later." +msgstr "Demasiadas subscricións. Faga unha pausa e inténteo máis tarde." + +#. TRANS: Exception thrown when joing groups too quickly. +msgid "Too many memberships. Take a break and try again later." +msgstr "Demasiados membros. Faga unha pausa e inténteo máis tarde." + +#. TRANS: Plugin description. +msgid "Configurable limits for subscriptions and group memberships." +msgstr "Límites configurables para as subscricións e os membros dos grupos." diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index 5f2ad057e1..e7be120e42 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index f85f7b963d..69a3e54618 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index 14853032ad..c3e8e5075a 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:57+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 2ee7f699ad..6e3e2c914c 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:10+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index b382a137c7..af5d4791ee 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 3a739e0022..2b854c28fc 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 13204a3eac..1e94d0e885 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index f159436a91..ba206b41c5 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 13af840a80..e9805c15d2 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index a561ec8065..df64c60d6e 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 211159cba7..e6a348e5b8 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 55abb71758..fab060be19 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index b75ddd6bc8..d1e91aadb0 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 886847f1fa..10d46b1afa 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 25f5183bed..4d92e98c3b 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 49314254c4..02df6373f9 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 0fff9d1a61..4b94e3f948 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index 9d1c491960..acb6cfa248 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 119b564eb4..f63331d6c8 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index b51a638fe0..c507dc18d9 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:11+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nn\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index d7d1d5021b..df774c23a5 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index df10903670..4f4e59c6cb 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 7b19a0c9e9..44aa9db5ba 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index a0aa9a0538..48d779e1bf 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 a4fbaa884f..a6daa8f6bb 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index 05301e1faf..a5df8bcbfa 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 4c6603fc98..59e1f94a1d 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po new file mode 100644 index 0000000000..157fe6f062 --- /dev/null +++ b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po @@ -0,0 +1,150 @@ +# Translation of StatusNet - TagSub 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 - TagSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:13+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:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-tagsub\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Form legend. +msgid "Unsubscribe from this tag" +msgstr "Cancelar a subscrición a esta etiqueta" + +#. TRANS: Submit button text to unsubscribe from a tag. +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Cancelar a subscrición" + +#. TRANS: Submit button title to unsubscribe from a tag. +msgid "Unsubscribe from this tag." +msgstr "Cancelar a subscrición a esta etiqueta." + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given tag." +msgstr "" +"Complemento para permitir seguir todas as mensaxes cunha etiqueta " +"especificada." + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure tag subscriptions" +msgstr "Configurar as subscricións ás etiquetas" + +#. TRANS: Menu item text for tags submenu. +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Form legend. +msgid "Subscribe to this tag" +msgstr "Subscribirse a esta etiqueta" + +#. TRANS: Submit button text to subscribe to a tag. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribirse" + +#. TRANS: Submit button title to subscribe to a tag. +msgid "Subscribe to this tag." +msgstr "Subscribirse a esta etiqueta." + +#. TRANS: Page title when tag unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Cancelouse a subscrición" + +#. 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 "Esta acción só permite solicitudes POST." + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Non iniciou sesión." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Non existe ese perfil." + +#. TRANS: Page title when tag subscription succeeded. +msgid "Subscribed" +msgstr "Subscrito" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's tag subscriptions" +msgstr "Subscricións a etiquetas 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 tag subscriptions, page %2$d" +msgstr "Subscricións a etiquetas de %1$s, páxina %2$d" + +#. TRANS: Page notice for page with an overview of all tag subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"Subscribiuse para recibir todas as notas do sitio que conteñan as seguintes " +"etiquetas:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"%s subscribiuse para recibir todas as notas do sitio que conteñan as " +"seguintes etiquetas:" + +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" +"Non está a seguir ningunha etiqueta nestes intres. Pode premer no botón " +"\"Subscribirse\" de calquera páxina dalgunha etiqueta para recibir " +"automaticamente calquera mensaxe pública deste sitio que use esa etiqueta, " +"mesmo se non está subscrito ao autor." + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not following any tags." +msgstr "%s non segue etiqueta ningunha." + +#. 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 "#%2$s desde %3$s" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 116d6d5cb8..020a6306b1 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 7893558aa4..30ea5e990d 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index 9097dbeb7b..f0b49685b8 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index a17a34cd50..29def23f38 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:14+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sr-ec\n" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index f10699bbe5..f94c93dcac 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index d90a9fdca8..bdabe31772 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index a99d2fc276..5569046f85 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 2dd60311ee..a0148d9206 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 8e02f84226..fbcd386f31 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index a190f579b5..53b47db764 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 14b4c9dd00..eae9663d89 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index 689b29440f..b2f5ed4dac 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -24,7 +24,7 @@ msgstr "" #. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "Debe especificar un serviceUrl." +msgstr "Cómpre especificar un serviceUrl." #. TRANS: Plugin description. %s is the shortener name. #, php-format diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index 9101c1092d..cd3e59be5e 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 2a0db6c3c8..2e1b1ca9f4 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index eb41e989c1..3d8dd0b675 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 1fe3da647a..69ecc65033 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index c6aad5b972..58f8192c0b 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index 4aaf92ce62..d4824ca933 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index 3ba3c739de..cca7463a91 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 359ba57fd0..d42d317d8f 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index 22a9c9d51d..705d4bff9c 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index 48c67127bc..ab67f57f4a 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index c34fbceff2..2d3f1e455b 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index a41e729c70..d42e242397 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 0e5c1efefb..ba572d73f3 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 9e00303bb9..4a6d0f4ea9 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 101a113b36..8428b65aba 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index 516adfb2b2..68949c5e95 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 8477174b59..71a9ff9a47 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:16+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 36494fc981..3d67906c50 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 44ab603f27..cd37011473 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po index 779f5d9c7c..d005be43c9 100644 --- a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:16+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-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 64d56c3f3b..2a5ed3e0ef 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 23848b0ff9..14b39a6ef1 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index 5a04705085..dde8393889 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 0013b1efbd..c2070566a0 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index 4388cde5d6..62f6c8a12d 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 8ba17f964b..06dbaa66a5 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 3acf346269..03b5673b64 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index f2be69d6da..fbcdd19c8f 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 4520b280c5..4cd9daf6df 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 47fa2ddd36..66d169c0e1 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index a15cdc7616..31ca0fe1a5 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index af65457dad..6e4353a697 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 8ac1d6626d..622a72e01e 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 c91507da9c..00fc370ffc 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 7e5f482a6a..d090c2ae9b 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index a0db84d405..b85741ada9 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 47cb417ac4..2bbae0ee95 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index e2e4b5265e..cba8e39e43 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:23+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po index c6fbbd1824..edd8657b53 100644 --- a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po @@ -1,5 +1,5 @@ # Translation of StatusNet - TwitterBridge to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,30 +9,432 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:14+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. -#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: twitterimport.php:114 +#. TRANS: Title for page with Twitter integration settings. +msgid "Twitter settings" +msgstr "Configuración do Twitter" + +#. TRANS: Instructions for page with Twitter integration settings. +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Conecte a súa conta do Twitter para compartir as súas actualizacións cos " +"seus amigos do Twitter e viceversa." + +#. TRANS: Fieldset legend. +msgid "Twitter account" +msgstr "Conta do Twitter" + +#. TRANS: Form note when a Twitter account has been connected. +msgid "Connected Twitter account" +msgstr "Conta do Twitter conectada" + +#. TRANS: Fieldset legend. +msgid "Disconnect my account from Twitter" +msgstr "Desconectar a miña conta do Twitter" + +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). #, php-format -msgid "RT @%1$s %2$s" +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" +"Ao desconectar o Twitter será imposible acceder ao sistema! [Defina un " +"contrasinal](%s) primeiro." -#: twitter.php:407 -msgid "Your Twitter bridge has been disabled." +#. TRANS: Form instructions. %1$s is the StatusNet sitename. +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." msgstr "" +"Manter a conta de %1$s pero desconectala do Twitter. Agora usará o seu " +"contrasinal de %1$s para acceder ao sistema." -#: twitter.php:411 +#. TRANS: Button text for disconnecting a Twitter account. +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Desconectarse" + +#. TRANS: Fieldset legend. +msgid "Preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label. +msgid "Automatically send my notices to Twitter." +msgstr "Enviar automaticamente as notas ao Twitter." + +#. TRANS: Checkbox label. +msgid "Send local \"@\" replies to Twitter." +msgstr "Enviar as respostas \"@\" locais ao Twitter." + +#. TRANS: Checkbox label. +msgid "Subscribe to my Twitter friends here." +msgstr "Subscribirse aos amigos do Twitter aquí." + +#. TRANS: Checkbox label. +msgid "Import my friends timeline." +msgstr "Importar a liña do tempo dos amigos." + +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Button text for adding Twitter integration. +msgctxt "BUTTON" +msgid "Add" +msgstr "Engadir" + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#. TRANS: Client error displayed when the submitted form contains unexpected data. +msgid "Unexpected form submission." +msgstr "Envío de formulario inesperado." + +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. +msgid "No Twitter connection to remove." +msgstr "Non hai ningunha conexión ao Twitter que eliminar." + +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +msgid "Could not remove Twitter user." +msgstr "Non se puido eliminar o usuario do Twitter." + +#. TRANS: Success message displayed after disconnecting a Twitter account. +msgid "Twitter account disconnected." +msgstr "Conta do Twitter desconectada." + +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +msgid "Could not save Twitter preferences." +msgstr "Non se puideron gardar as preferencias do Twitter." + +#. TRANS: Success message after saving Twitter integration preferences. +msgid "Twitter preferences saved." +msgstr "Gardáronse as preferencias do Twitter." + +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. +msgid "You cannot register if you do not agree to the license." +msgstr "Non pode rexistrarse se non acepta a licenza." + +#. TRANS: Form validation error displayed when an unhandled error occurs. +msgid "Something weird happened." +msgstr "Ocorreu algo estraño." + +#. TRANS: Server error displayed when linking to a Twitter account fails. +msgid "Could not link your Twitter account." +msgstr "Non se puido ligar a súa conta do Twitter." + +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +msgid "Could not link your Twitter account: oauth_token mismatch." +msgstr "" +"Non se puido ligar a súa conta do Twitter: O pase de autenticación " +"oauth_token non coincide." + +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, 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 " +"connect with your existing account, if you have one." +msgstr "" +"Esta é a primeira vez que accede ao sistema de %s, de modo que debemos " +"conectar a súa conta do Twitter cunha conta local. Pode crear unha nova " +"conta local ou ben conectar con outra conta local existente." + +#. TRANS: Page title. +msgid "Twitter Account Setup" +msgstr "Configuración da conta do Twitter" + +#. TRANS: Fieldset legend. +msgid "Connection options" +msgstr "Opcións de conexión" + +#. TRANS: Fieldset legend. +msgid "Create new account" +msgstr "Crear unha conta nova" + +#. TRANS: Sub form introduction text. +msgid "Create a new user with this nickname." +msgstr "Crear un novo usuario con este alcume." + +#. TRANS: Field label. +msgid "New nickname" +msgstr "Novo alcume" + +#. TRANS: Field title for nickname field. +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes." + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Field title for e-mail address field. +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" + +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#. TRANS: Fieldset legend. +msgid "Connect existing account" +msgstr "Conectar cunha conta existente" + +#. TRANS: Sub form introduction text. +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Se xa ten unha conta, acceda ao sistema co seu nome de usuario e contrasinal " +"para conectala coa do Twitter." + +#. TRANS: Field label. +msgid "Existing nickname" +msgstr "Alcume existente" + +#. TRANS: Field label. +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Fieldset legend. +msgid "License" +msgstr "Licenza" + +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." + +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. +msgid "Registration not allowed." +msgstr "Non se permite o rexistro." + +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. +msgid "Not a valid invitation code." +msgstr "O código da invitación é incorrecto." + +#. TRANS: Client error displayed when trying to create a new user with an invalid username. +msgid "Nickname not allowed." +msgstr "Alcume non permitido." + +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. +msgid "Nickname already in use. Try another one." +msgstr "Ese alcume xa está en uso. Probe con outro." + +#. TRANS: Server error displayed when creating a new user has failed. +msgid "Error registering user." +msgstr "Erro ao rexistrar o usuario." + +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. +msgid "Error connecting user to Twitter." +msgstr "Erro ao conectar o usuario co Twitter." + +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. +msgid "Invalid username or password." +msgstr "O nome de usuario ou contrasinal non son correctos." + +#. TRANS: Page title for Twitter administration panel. +msgctxt "TITLE" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Instructions for Twitter bridge administration page. +msgid "Twitter bridge settings" +msgstr "Configuración da ponte ata o Twitter" + +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." +msgstr "" +"Clave de consumidor incorrecta. A extensión máxima é de 255 caracteres." + +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." +msgstr "" +"Frase secreta de consumidor incorrecta. A extensión máxima é de 255 " +"caracteres." + +#. TRANS: Fieldset legend for Twitter application settings. +msgid "Twitter application settings" +msgstr "Configuración da aplicación do Twitter" + +#. TRANS: Field label for Twitter assigned consumer key. +msgid "Consumer key" +msgstr "Clave do consumidor" + +#. TRANS: Field title for Twitter assigned consumer key. +msgid "The consumer key assigned by Twitter." +msgstr "A clave de consumidor asignada polo Twitter." + +#. TRANS: Field label for Twitter assigned consumer secret. +msgid "Consumer secret" +msgstr "Pregunta secreta do consumidor" + +#. TRANS: Field title for Twitter assigned consumer secret. +msgid "The consumer secret assigned by Twitter." +msgstr "A pregunta secreta do consumidor asignada polo Twitter." + +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." +msgstr "Nota: Están definidas a clave e a pregunta secreta de consumidor." + +#. TRANS: Field label for Twitter application name. +msgid "Integration source" +msgstr "Fonte de integración" + +#. TRANS: Field title for Twitter application name. +msgid "The name of your Twitter application." +msgstr "O nome da súa aplicación do Twitter." + +#. TRANS: Fieldset legend for Twitter integration options. +msgid "Options" +msgstr "Opcións" + +#. TRANS: Checkbox label for global setting. +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Activar \"Rexistrarse co Twitter\"" + +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." +msgstr "Isto permite aos usuarios rexistrarse coas credenciais do Twitter." + +#. TRANS: Checkbox label for global setting. +msgid "Enable Twitter import" +msgstr "Activar a importación desde o Twitter" + +#. TRANS: Checkbox title for global setting. +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Permitir aos usuarios importar as liñas do tempo dos amigos do Twitter. " +"Cómpre configurar manualmente os servizos." + +#. TRANS: Button title for saving the administrative Twitter bridge settings. +msgid "Save the Twitter bridge settings." +msgstr "Gardar a configuración da ponte ata o Twitter." + +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "Esquema de URL inválido para o lector de fluxo HTTP." + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "Recibiuse unha entrada desde un conectador non esperado!" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "Estado inválido en handleLine: %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 "Liña de resposta HTTP inválida: %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 "Fragmento de liña de resposta HTTP inválido \"%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 "Código de resposta HTTP erróneo %1$s: %2$s." + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +msgid "Login or register using Twitter." +msgstr "Acceda ou rexístrese mediante o Twitter." + +#. TRANS: Title for menu item in connection settings navigation. +msgid "Twitter integration options" +msgstr "Opcións de integración do Twitter" + +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +msgid "Twitter bridge configuration page." +msgstr "Páxina de configuración da ponte ata o Twitter." + +#. TRANS: Plugin description. +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"O complemento de \"ponte\" ata o Twitter permite a integración dunha " +"instancia do StatusNet co Twitter." + +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. +msgid "Already logged in." +msgstr "Xa se identificou." + +#. TRANS: Title for login using Twitter page. +msgctxt "TITLE" +msgid "Twitter Login" +msgstr "Rexistro do Twitter" + +#. TRANS: Instructions for login using Twitter page. +msgid "Login with your Twitter account" +msgstr "Acceder coa conta do Twitter" + +#. TRANS: Alternative text for "sign in with Twitter" image. +msgid "Sign in with Twitter" +msgstr "Rexistrarse co Twitter" + +#. TRANS: Mail subject after forwarding notices to Twitter has stopped working. +msgid "Your Twitter bridge has been disabled" +msgstr "Desactivouse a súa ponte ata o Twitter" + +#. TRANS: Mail body after forwarding notices to Twitter has stopped working. +#. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the +#. TRANS: Twitter settings, %3$s is the StatusNet sitename. #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that your link to Twitter has been " @@ -47,325 +449,20 @@ msgid "" "Regards,\n" "%3$s" msgstr "" +"Ola, %1$s. Sentimos informar de que a súa ligazón cara ao Twitter está " +"desctivada. Semella que xa non temos permiso para actualizar o seu estado no " +"Twitter. Poida que revogase o acceso que tiña %3$s?\n" +"\n" +"Pode volver activar a súa ponte ata o Twitter visitando a páxina de " +"configuración do Twitter:\n" +"\n" +"\t%2$s\n" +"\n" +"Atentamente,\n" +"%3$s" -#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 -#: TwitterBridgePlugin.php:302 twitteradminpanel.php:52 -msgid "Twitter" -msgstr "Twitter" - -#: TwitterBridgePlugin.php:152 -msgid "Login or register using Twitter" -msgstr "" - -#: TwitterBridgePlugin.php:175 -msgid "Twitter integration options" -msgstr "" - -#: TwitterBridgePlugin.php:303 -msgid "Twitter bridge configuration" -msgstr "" - -#: TwitterBridgePlugin.php:327 -msgid "" -"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " -"with Twitter." -msgstr "" - -#: twitteradminpanel.php:62 -msgid "Twitter bridge settings" -msgstr "" - -#: twitteradminpanel.php:150 -msgid "Invalid consumer key. Max length is 255 characters." -msgstr "" - -#: twitteradminpanel.php:156 -msgid "Invalid consumer secret. Max length is 255 characters." -msgstr "" - -#: twitteradminpanel.php:212 -msgid "Twitter application settings" -msgstr "" - -#: twitteradminpanel.php:218 -msgid "Consumer key" -msgstr "Clave do consumidor" - -#: twitteradminpanel.php:219 -msgid "Consumer key assigned by Twitter" -msgstr "Clave do consumidor asignada polo Twitter" - -#: twitteradminpanel.php:227 -msgid "Consumer secret" -msgstr "Pregunta secreta do consumidor" - -#: twitteradminpanel.php:228 -msgid "Consumer secret assigned by Twitter" -msgstr "Pregunta secreta do consumidor asignada polo Twitter" - -#: twitteradminpanel.php:238 -msgid "Note: a global consumer key and secret are set." -msgstr "" - -#: twitteradminpanel.php:245 -msgid "Integration source" -msgstr "Fonte de integración" - -#: twitteradminpanel.php:246 -msgid "Name of your Twitter application" -msgstr "" - -#: twitteradminpanel.php:258 -msgid "Options" -msgstr "Opcións" - -#: twitteradminpanel.php:265 -msgid "Enable \"Sign-in with Twitter\"" -msgstr "" - -#: twitteradminpanel.php:267 -msgid "Allow users to login with their Twitter credentials" -msgstr "" - -#: twitteradminpanel.php:274 -msgid "Enable Twitter import" -msgstr "" - -#: twitteradminpanel.php:276 -msgid "" -"Allow users to import their Twitter friends' timelines. Requires daemons to " -"be manually configured." -msgstr "" - -#: twitteradminpanel.php:293 twittersettings.php:200 -msgid "Save" -msgstr "Gardar" - -#: twitteradminpanel.php:293 -msgid "Save Twitter settings" -msgstr "" - -#: twitterlogin.php:56 -msgid "Already logged in." -msgstr "" - -#: twitterlogin.php:64 -msgid "Twitter Login" -msgstr "" - -#: twitterlogin.php:69 -msgid "Login with your Twitter account" -msgstr "" - -#: twitterlogin.php:87 -msgid "Sign in with Twitter" -msgstr "" - -#: twitterauthorization.php:120 twittersettings.php:226 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: twitterauthorization.php:126 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: twitterauthorization.php:135 -msgid "Something weird happened." -msgstr "" - -#: twitterauthorization.php:181 twitterauthorization.php:229 -#: twitterauthorization.php:300 -msgid "Couldn't link your Twitter account." -msgstr "" - -#: twitterauthorization.php:201 -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -#: twitterauthorization.php:312 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." -msgstr "" - -#: twitterauthorization.php:318 -msgid "Twitter Account Setup" -msgstr "" - -#: twitterauthorization.php:351 -msgid "Connection options" -msgstr "" - -#: twitterauthorization.php:360 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: twitterauthorization.php:381 -msgid "Create new account" -msgstr "" - -#: twitterauthorization.php:383 -msgid "Create a new user with this nickname." -msgstr "" - -#: twitterauthorization.php:386 -msgid "New nickname" -msgstr "" - -#: twitterauthorization.php:388 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" - -#: twitterauthorization.php:391 -msgid "Create" -msgstr "Crear" - -#: twitterauthorization.php:396 -msgid "Connect existing account" -msgstr "" - -#: twitterauthorization.php:398 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your Twitter account." -msgstr "" - -#: twitterauthorization.php:401 -msgid "Existing nickname" -msgstr "" - -#: twitterauthorization.php:404 -msgid "Password" -msgstr "Contrasinal" - -#: twitterauthorization.php:407 -msgid "Connect" -msgstr "Conectar" - -#: twitterauthorization.php:423 twitterauthorization.php:432 -msgid "Registration not allowed." -msgstr "" - -#: twitterauthorization.php:439 -msgid "Not a valid invitation code." -msgstr "" - -#: twitterauthorization.php:452 -msgid "Nickname not allowed." -msgstr "" - -#: twitterauthorization.php:457 -msgid "Nickname already in use. Try another one." -msgstr "" - -#: twitterauthorization.php:472 -msgid "Error registering user." -msgstr "" - -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 -msgid "Error connecting user to Twitter." -msgstr "" - -#: twitterauthorization.php:503 -msgid "Invalid username or password." -msgstr "" - -#: twittersettings.php:58 -msgid "Twitter settings" -msgstr "Configuración do Twitter" - -#: twittersettings.php:69 -msgid "" -"Connect your Twitter account to share your updates with your Twitter friends " -"and vice-versa." -msgstr "" - -#: twittersettings.php:116 -msgid "Twitter account" -msgstr "Conta do Twitter" - -#: twittersettings.php:121 -msgid "Connected Twitter account" -msgstr "" - -#: twittersettings.php:126 -msgid "Disconnect my account from Twitter" -msgstr "" - -#: twittersettings.php:132 -msgid "Disconnecting your Twitter could make it impossible to log in! Please " -msgstr "" - -#: twittersettings.php:136 -msgid "set a password" -msgstr "" - -#: twittersettings.php:138 -msgid " first." -msgstr " primeiro." - -#. TRANS: %1$s is the current website name. -#: twittersettings.php:142 -#, php-format -msgid "" -"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " -"password to log in." -msgstr "" - -#: twittersettings.php:150 -msgid "Disconnect" -msgstr "Desconectarse" - -#: twittersettings.php:157 -msgid "Preferences" -msgstr "Preferencias" - -#: twittersettings.php:161 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: twittersettings.php:168 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: twittersettings.php:175 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: twittersettings.php:184 -msgid "Import my friends timeline." -msgstr "" - -#: twittersettings.php:202 -msgid "Add" -msgstr "Engadir" - -#: twittersettings.php:236 -msgid "Unexpected form submission." -msgstr "" - -#: twittersettings.php:251 -msgid "No Twitter connection to remove." -msgstr "" - -#: twittersettings.php:259 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: twittersettings.php:263 -msgid "Twitter account disconnected." -msgstr "" - -#: twittersettings.php:283 twittersettings.php:294 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: twittersettings.php:302 -msgid "Twitter preferences saved." -msgstr "" +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index e7637c71ad..b3d0d110ff 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 7c8a617938..87b4918e20 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:24+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 3d655bfadf..9a217c5c1b 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 3809adbbe0..a7ef269da9 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:24+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index f6b0a83fbe..df1214b9aa 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index 4aabe5e42a..d297c6fa27 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 9ee4510778..a47c716288 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 93ef9e650c..8bc30d5c77 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 437efad1d4..76cdd890fb 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index eec1061776..c206970bd9 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 3f4bd92a6d..f44e6cb788 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 38aa810597..de6e468d6e 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:26+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index 07df027d83..feea7874f4 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 1490209763..0de4955812 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..e93ca9cc3d --- /dev/null +++ b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po @@ -0,0 +1,107 @@ +# Translation of StatusNet - UserFlag 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 - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:26+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:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: AJAX form title for a flagged profile. +msgid "Flagged for review" +msgstr "Marcado para revisión" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#. TRANS: Message added to a profile if it has been flagged for review. +msgid "Flagged" +msgstr "Marcado" + +#. TRANS: Plugin description. +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Este complemento permite marcar perfís para revisión e revisar perfís " +"marcados." + +#. TRANS: Form title for flagging a profile for review. +msgid "Flag" +msgstr "Marcar" + +#. TRANS: Form description. +msgid "Flag profile for review." +msgstr "Marcar o perfil para revisión." + +#. TRANS: Form title for action on a profile. +msgid "Clear" +msgstr "Limpar" + +#. TRANS: Form description for clearing flags from a profile. +msgid "Clear all flags" +msgstr "Limpar todas as marcas" + +#. 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: Error message displayed when trying to review profile flags while not authorised. +msgid "You cannot review profile flags." +msgstr "Non pode revisar marcas de perfíl." + +#. TRANS: Title for page with a list of profiles that were flagged for review. +msgid "Flagged profiles" +msgstr "Perfís marcados" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +msgid "Moderate" +msgstr "Moderar" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Marcado por %1$s e outro" +msgstr[1] "Marado por %1$s e %2$d máis" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#, php-format +msgid "Flagged by %s" +msgstr "Marcado por %s" + +#. TRANS: Server exception given when flags could not be cleared. +#. TRANS: %s is a profile nickname. +#, php-format +msgid "Could not clear flags for profile \"%s\"." +msgstr "Non se puideron limpar as marcas do perfil \"%s\"." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +msgid "Flags cleared" +msgstr "Marcas limpadas" + +#. TRANS: Body element for "flags cleared" form. +msgid "Cleared" +msgstr "Limpado" + +#. TRANS: Server exception. +#. TRANS: %d is a profile ID (number). +#, php-format +msgid "Could not flag profile \"%d\" for review." +msgstr "Non se puido marcar o perfil \"%d\" para revisión." diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index 4212a96c3e..d40d3c49a0 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index f05d1d86fd..9f42b97322 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index d4dd7eb9d4..226d6023a8 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 4a7ce81178..df724e4db2 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 36c81dba68..5371ad0226 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index 705e8ca980..6dc7661deb 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index e760bc3e5c..951196e2a7 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index bd9ef95638..d2629dffab 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 97d78e30f5..7007120a60 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 077e3f5891..079c4ae87e 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 3a1c1e83dd..908f790752 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index cf3914e609..eae9898ad8 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:27+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fa\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 416ffed51f..03a7ebad6a 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index bb5aa7fec9..04e9f729af 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 23e8b2c9f0..03904e84a9 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 5986c54573..71ad4934fe 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 79b377a999..73d8ec833b 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index ca1e32b3c2..3a5fc15ae8 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 0658894c1b..a104cd2b6e 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 17e853550e..4f139a6cea 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lv\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 93c60de289..74f4b66e9c 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index 162285322a..e4e1e21315 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 4f338de7a1..cae40010d7 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index e967595898..6dd4a5d4e4 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index fbcfdeab51..7a3ac3483b 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 23e3ffc301..5de4f8c678 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 691972a2c0..facaa4521c 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 56c3c2ebc3..b0da945aaf 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 2976e5860f..58670b4995 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:29+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 1ad517c065..72541944c2 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 2e48b77b95..7b2f247a14 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 b4dedafb2a..78ec9ddf62 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..beae528506 --- /dev/null +++ b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - WikiHashtags 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 - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Editar o artigo \"#%s\" en WikiHashtags" + +#. TRANS: Link description for editing an article on WikiHashTags. +msgid "Edit" +msgstr "Editar" + +#. TRANS: Link title for viewing the GFDL. +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "Difundido baixo os termos da licenza de documentación libre de GNU" + +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "GNU FDL" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Crear o artigo \"#%s\" en WikiHashtags" + +#. TRANS: Plugin description. +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Obtén as descricións das etiquetas desde WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index ab797b875f..8620cacfe5 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index c41ba40aad..910e17a51d 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index a190f1cfdc..2040b3d77d 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:30+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index f35aa55f70..8fadfba986 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index d884d4739e..97ecc0e7c2 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 067700435c..feebf3fff2 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 02a65bbb37..8d8b7add60 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 89bf6395de..f54d2c970f 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 5044025cfc..38893cbf1a 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -1,6 +1,7 @@ # Translation of StatusNet - WikiHowProfile to French (Français) # Exported from translatewiki.net # +# Author: DavidL # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -32,11 +33,12 @@ msgstr "" #. TRANS: Exception thrown when fetching a WikiHow profile page fails. msgid "WikiHow profile page fetch failed." -msgstr "" +msgstr "La recherche de la page de profile WikiHow a échoué." #. TRANS: Exception thrown when parsing a WikiHow profile page fails. msgid "HTML parse failure during check for WikiHow avatar." msgstr "" +"Échec de l'interprétation HTML durant la vérification de l'avatar WikiHow." #. TRANS: Server exception thrown when an avatar URL is invalid. #. TRANS: %s is the invalid avatar URL. diff --git a/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..39dc93f97a --- /dev/null +++ b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,51 @@ +# Translation of StatusNet - WikiHowProfile 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 - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Recupera o avatar e outra información de perfil para os usuarios de WikiHow " +"ao crear unha conta mediante o OpenID." + +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "Erro ao recuperar a páxina de perfil WikiHow." + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "Erro de interpretación HTML durante a comprobación do avatar WikiHow." + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. +#, php-format +msgid "Invalid avatar URL %s." +msgstr "O enderezo URL do avatar, %s, é incorrecto." + +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Non se puido recuperar o avatar desde %s." diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index d5ec48bb4a..19d3f62ddf 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 87d0a1b950..6a52c5238f 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index b01e2d7dfa..6b893c5a4d 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index 8dfc117d59..0eb4c5367c 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index d8e59c57eb..e5c677334b 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index a9988a7380..996f7b7c09 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 18cfe1d66d..d76ff369f1 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index e3a44bcced..45d639a196 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index 1b2d539409..a20494478a 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 754fc10027..8e0e504688 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:31+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index cde956d3f7..78b5ca30e5 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index 42665eef7a..715c981517 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index bec0ca69ae..0d58f9903d 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index a56959103d..5c9b68044a 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 538669fe25..6703ebdcbe 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 895ff26a0e..0a1b0939a6 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index a45a5cd0e9..238c46064d 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 9e2510a9b5..8cbd2d64b3 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index f34443af68..238c2b5ede 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index 6b6565730b..e45fdcf2ac 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index 0fd4a3918e..cf48b5c128 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 950723a469..6a46873141 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 6f3ac9953e..67fc1c4d99 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 70df6c8b0d..76eebdc0a6 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index fb2771a626..36f9edf7be 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index c3d934f85e..a6f240574b 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index cb7e110cb9..cf576d229e 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index d273856b1a..6c27ccb617 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:33+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 (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index a7d2b65fbb..d1cd2535c0 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:19+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index 9b1edcd902..4c438b2c10 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 aeaaad735a..4aef500499 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po new file mode 100644 index 0000000000..17fe7abc67 --- /dev/null +++ b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Xmpp 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 - Xmpp\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-xmpp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. +msgid "Send me a message to post a notice" +msgstr "Envíame unha mensaxe para publicar unha nota" + +#. TRANS: Plugin display name. +msgid "XMPP/Jabber/GTalk" +msgstr "XMPP/Jabber/GTalk" + +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "JID inválido: Demasiados signos @." + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "JID inválido: Signo @ sen nodo" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "JID inválido: O nodo é longo de máis." + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "Nodo JID, \"%s\", inválido." + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "JID inválido: O dominio é longo de máis." + +#. 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 "Nome de dominio JID, \"%s\", inválido." + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "Recurso JID, \"%s\", inválido." + +#. TRANS: Link description to notice in conversation. +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "Cómpre especificar un servidor na configuración." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "Cómpre especificar un porto na configuración." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "Cómpre especificar un usuario na configuración." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "Cómpre especificar un contrasinal na configuración." + +#. TRANS: Plugin description. +msgid "" +"The XMPP plugin allows users to send and receive notices over the XMPP/" +"Jabber network." +msgstr "" +"O complemento XMPP permite aos usuarios enviar e recibir mensaxes desde a " +"rede de XMPP/Jabber." diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 3bcc1dc720..10fe50ee0e 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index f46d1be274..8bddd8ae19 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index 6ee96eb6c3..4b7b8909b7 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:20+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 098af59e60..b4078ee21f 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-11-11 15:03+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\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 f1df2f5bcb..4d8b2b019d 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index bdd5f40bec..510cf76ce6 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 5dbf7ebfa8..d7fc4e8b9f 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index fd6a5dd29f..7e68860515 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-19 13:18+0000\n" -"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r105064); 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-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,7 +27,7 @@ msgstr "" #. TRANS: Field label for a Yammer import connect step. #. TRANS: Form legend. msgid "Connect to Yammer" -msgstr "" +msgstr "Conectar ao Yammer" #. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" @@ -39,6 +40,10 @@ msgid "" "transferred; in the future this may be supported for imports done by " "verified administrators on the Yammer side." msgstr "" +"Esta ferramenta de importación do Yammer está aínda baixo probas e está " +"incompleta nalgúns aspectos. Arestora, non se transfiren as subscricións de " +"usuarios e as pertenzas aos grupos; no futuro, isto pode estar soportado " +"para as importacións feitas por administradores verificados no Yammer." #. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." @@ -46,86 +51,94 @@ msgstr "En pausa desde o panel de administración." #. TRANS: Client exception thrown when encountering an unhandled sub action. msgid "Invalid POST" -msgstr "" +msgstr "POST inválido." #. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" -msgstr "" +msgstr "Importación Yammer" #. TRANS: Menu item for Yammer import. -#, fuzzy msgctxt "MENU" msgid "Yammer" -msgstr "Importación Yammer" +msgstr "Yammer" #. TRANS: Menu item title for Yammer import. -#, fuzzy msgid "Yammer import module." -msgstr "Importación Yammer" +msgstr "Módulo de importación Yammer." #. TRANS: Exception thrown when a non-user item type is used, but expected. msgid "Wrong item type sent to Yammer user import processing." msgstr "" +"Tipo de elemento incorrecto enviado para o proceso de importación de " +"usuarios do Yammer." #. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" -msgstr "" +msgstr "Experiencia:" #. TRANS: Exception thrown when a non-group item type is used, but expected. msgid "Wrong item type sent to Yammer group import processing." msgstr "" +"Tipo de elemento incorrecto enviado para o proceso de importación de grupos " +"do Yammer." #. TRANS: Exception thrown when a non-message item type is used, but expected. msgid "Wrong item type sent to Yammer message import processing." msgstr "" +"Tipo de elemento incorrecto enviado para o proceso de importación de " +"mensaxes do Yammer." #. TRANS: Server exception thrown when an avatar URL is invalid. #. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." -msgstr "" +msgstr "O enderezo URL do avatar, %s, é incorrecto." #. TRANS: Server exception thrown when an avatar could not be fetched. #. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." -msgstr "" +msgstr "Non se puido recuperar o avatar desde %s." #. TRANS: Button text for starting Yammer authentication. msgctxt "BUTTON" msgid "Start authentication" -msgstr "" +msgstr "Comezar a autenticación" #. TRANS: Button title for starting Yammer authentication. msgid "Request authorization to connect to a Yammer account." -msgstr "" +msgstr "Solicitar autorización para conectarse a unha conta do Yammer." #. TRANS: Button text for starting changing a Yammer API key. msgctxt "BUTTON" msgid "Change API key" -msgstr "" +msgstr "Cambiar a clave da API" #. TRANS: Server exception thrown if a Yammer authentication request is already present. msgid "Cannot request Yammer auth; already there!" msgstr "" +"Non se pode solicitar a autenticación do Yammer; a solicitude xa está " +"presente!" #. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. msgid "Cannot get Yammer auth URL when not in requesting-auth state!" msgstr "" +"Non se pode obter a autenticación do Yammer sen estar no modo de solicitude " +"de autenticación!" #. TRANS: Exeption thrown when an external Yammer system gives an error. #. TRANS: %1$s is an HTTP error code, %2$s is the error message body. #, php-format msgid "Yammer API returned HTTP code %1$s: %2$s" -msgstr "" +msgstr "A API do Yammer devolveu o código HTTP %1$s: %2$s" #. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. msgid "Invalid JSON response from Yammer API." -msgstr "" +msgstr "Resposta JSON inválida desde a API do Yammer." #. TRANS: Exeption thrown when a trust relationship has already been established. msgid "Requesting a token, but already set up with a token." -msgstr "" +msgstr "Solicitando un pase, pero o pase xa está configurado." #. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" @@ -133,11 +146,11 @@ msgstr "Iniciar" #. TRANS: "In progress" description. msgid "No import running" -msgstr "" +msgstr "Non hai ningunha importación en curso" #. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." -msgstr "" +msgstr "Conexión ao servidor do Yammer iniciada..." #. TRANS: "In progress" description. msgid "Awaiting authorization..." @@ -149,83 +162,83 @@ msgstr "Conectado." #. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" -msgstr "" +msgstr "Importar contas de usuario" #. TRANS: "In progress" description. #. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Importando %d usuario..." +msgstr[1] "Importando %d usuarios..." #. TRANS: "Complete" description for step. #. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d usuario importado." +msgstr[1] "%d usuarios importados." #. TRANS: Field label for a Yammer group import step. msgid "Import user groups" -msgstr "" +msgstr "Importar grupos de usuario" #. TRANS: "In progress" description. #. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Importando %d grupo..." +msgstr[1] "Importando %d grupos..." #. TRANS: "Complete" description for step. #. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d grupo importado." +msgstr[1] "%d grupos importados." #. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" -msgstr "" +msgstr "Preparar a importación de notas públicas" #. TRANS: "In progress" description. #. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Preparando %d nota..." +msgstr[1] "Preparando %d notas..." #. TRANS: "Complete" description for step. #. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d nota preparada." +msgstr[1] "%d notas preparadas." #. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" -msgstr "" +msgstr "Importar notas públicas" #. TRANS: "In progress" description. #. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Importando %d nota..." +msgstr[1] "Importando %d notas..." #. TRANS: "Complete" description for step. #. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d nota importada." +msgstr[1] "%d notas importadas." #. TRANS: Field label for a Yammer import done step. msgid "Done" @@ -253,9 +266,9 @@ msgid "Pause import" msgstr "Pausar a importación" #. TRANS: Error message. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Encountered error \"%s\"." -msgstr "Atopouse o erro \"%s\"" +msgstr "Atopouse o erro \"%s\"." #. TRANS: Fieldset legend for a paused import. msgid "Paused" @@ -274,32 +287,33 @@ msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" +"Siga esta ligazón para confirmar a autorización no Yammer; pedirémoslle que " +"inicie sesión se fose necesario:" #. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" -msgstr "" +msgstr "Abrir a ventá de importación do Yammer" #. TRANS: Form instructions. msgid "Copy the verification code you are given below:" -msgstr "" +msgstr "Copie o código de verificación que recibiu a continuación:" #. TRANS: Field label. msgid "Verification code:" msgstr "Código de verificación:" #. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Continuar" #. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. msgid "Save the verification code and begin import." -msgstr "" +msgstr "Gardar o código de verificación e comezar a importación." #. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" -msgstr "" +msgstr "Rexistro da API do Yammer" #. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" @@ -308,14 +322,20 @@ msgid "" "registration will work only for your own network. Follow this link to " "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" +"Antes de que poidamos conectar coa rede do Yammer, terá que rexistrar a " +"aplicación de importación co fin de autorizala para que recolla datos no seu " +"nome. Este rexistro funcionará unicamente na súa propia rede. Siga esta " +"ligazón para rexistrar a aplicación no Yammer; pedirémoslle que inicie " +"sesión se fose necesario:" #. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" -msgstr "" +msgstr "Abrir o formulario de rexistro da aplicación do Yammer" #. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" +"Copie a clave e a frase de consumidor secreta que recibiu a continuación:" #. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" @@ -326,11 +346,10 @@ msgid "Consumer secret:" msgstr "Pregunta secreta do consumidor:" #. TRANS: Button text for saving a Yammer API registration. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Gardar" #. TRANS: Button title for saving a Yammer API registration. msgid "Save the entered consumer key and consumer secret." -msgstr "" +msgstr "Gardar a clave e a frase de consumidor secreta inseridas." diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 7689dd9a31..e299c5312d 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:24+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 85378aa2f3..a02acac66e 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index d0c2420bde..9bbaee4101 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index ea9330b573..573d4b0a8b 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 23776adb86..115de48a80 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index aeb3b6a240..43996d2730 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-11 15:03+0000\n" -"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" +"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"PO-Revision-Date: 2011-12-03 10:47: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" From a818d5c61a97283be6e9226ee3aeeeadc4a0153f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 3 Dec 2011 11:45:56 -0500 Subject: [PATCH 091/134] use null for db/database config, check for it --- lib/default.php | 2 +- lib/statusnet.php | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 0f321efe0e..b20af476d6 100644 --- a/lib/default.php +++ b/lib/default.php @@ -66,7 +66,7 @@ $default = 'minify' => true, // true to use the minified versions of JS files; false to use orig files. Can aid during development ), 'db' => - array('database' => 'YOU HAVE TO SET THIS IN config.php', + array('database' => null, // must be set 'schema_location' => INSTALLDIR . '/classes', 'class_location' => INSTALLDIR . '/classes', 'require_prefix' => 'classes/', diff --git a/lib/statusnet.php b/lib/statusnet.php index bffa625773..5a20789e01 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -383,6 +383,7 @@ class StatusNet $config['cache']['base'] = $config['memcached']['base']; } } + if (array_key_exists('xmpp', $config)) { if ($config['xmpp']['enabled']) { addPlugin('xmpp', array( @@ -398,6 +399,12 @@ class StatusNet )); } } + + // Check for database server; must exist! + + if (empty($config['db']['database'])) { + throw new ServerException("No database server for this site."); + } } /** From 0760c64264943253748902047beb4820277b9ee1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 3 Dec 2011 12:31:47 -0500 Subject: [PATCH 092/134] log when including a file --- lib/statusnet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/statusnet.php b/lib/statusnet.php index 5a20789e01..cd78516528 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -362,6 +362,7 @@ class StatusNet if (@file_exists($_config_file)) { // Ignore 0-byte config files if (filesize($_config_file) > 0) { + common_log(LOG_INFO, "Including config file: " . $_config_file); include($_config_file); self::$have_config = true; } From ac5e29de5a8100ac571e0f573e498aa9c3ec60cf Mon Sep 17 00:00:00 2001 From: Jean Baptiste Favre Date: Tue, 13 Dec 2011 20:30:03 +0100 Subject: [PATCH 093/134] Fix precedence issue causing all replies to be sent to Twitter. Fix #3386 --- plugins/TwitterBridge/twitter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 05fbdf2c4f..3da974df93 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -116,12 +116,12 @@ function is_twitter_bound($notice, $flink) { } // Check to see if notice should go to Twitter - if (!empty($flink) && ($flink->noticesync & FOREIGN_NOTICE_SEND == FOREIGN_NOTICE_SEND)) { + if (!empty($flink) && (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND)) { // If it's not a Twitter-style reply, or if the user WANTS to send replies, // or if it's in reply to a twitter notice if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) || - ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY == FOREIGN_NOTICE_SEND_REPLY) || + (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY) || is_twitter_notice($notice->reply_to)) { return true; } From 3e0a02f52daa802ba347654fd40c1a25399aff11 Mon Sep 17 00:00:00 2001 From: Jean Baptiste Favre Date: Sun, 18 Dec 2011 12:13:42 +0100 Subject: [PATCH 094/134] Enhance is_twitter_bound function from file plugins/TwitterBridge/twitter.php to deal with new-style replies from Web UI not using at-mention replies anymore, which caused all replies to be sent to Twitter. Definitely fix #3386 --- plugins/TwitterBridge/twitter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 3da974df93..ac61cc6160 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -120,9 +120,9 @@ function is_twitter_bound($notice, $flink) { // If it's not a Twitter-style reply, or if the user WANTS to send replies, // or if it's in reply to a twitter notice - if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) || - (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY) || - is_twitter_notice($notice->reply_to)) { + if ( (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY) || + (is_twitter_notice($notice->reply_to) || is_twitter_notice($notice->repeat_of)) || + (empty($notice->reply_to) && !preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content)) ){ return true; } } From 184290b5cf8448bb58b4ccd7d3bef39bd12a73f6 Mon Sep 17 00:00:00 2001 From: Jean Baptiste Favre Date: Sun, 18 Dec 2011 12:17:28 +0100 Subject: [PATCH 095/134] Add my name to TwitterBridgePlugin onPluginVersion function --- plugins/TwitterBridge/TwitterBridgePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index b37d01274d..d733f71c56 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -339,7 +339,7 @@ class TwitterBridgePlugin extends Plugin $versions[] = array( 'name' => 'TwitterBridge', 'version' => self::VERSION, - 'author' => 'Zach Copley, Julien C', + 'author' => 'Zach Copley, Julien C, Jean Baptiste Favre', 'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge', // TRANS: Plugin description. 'rawdescription' => _m('The Twitter "bridge" plugin allows integration ' . From 7f257ddb95bf3b3a3bf5917ced61f2bff23bb4be Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 19 Dec 2011 02:02:49 +0100 Subject: [PATCH 096/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 6 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 117 +- locale/bg/LC_MESSAGES/statusnet.po | 6 +- locale/br/LC_MESSAGES/statusnet.po | 10 +- locale/ca/LC_MESSAGES/statusnet.po | 22 +- locale/cs/LC_MESSAGES/statusnet.po | 6 +- locale/de/LC_MESSAGES/statusnet.po | 8 +- locale/en_GB/LC_MESSAGES/statusnet.po | 6 +- locale/eo/LC_MESSAGES/statusnet.po | 6 +- locale/es/LC_MESSAGES/statusnet.po | 1366 ++++++--------- locale/eu/LC_MESSAGES/statusnet.po | 8 +- locale/fa/LC_MESSAGES/statusnet.po | 6 +- locale/fi/LC_MESSAGES/statusnet.po | 7 +- locale/fr/LC_MESSAGES/statusnet.po | 47 +- locale/fur/LC_MESSAGES/statusnet.po | 36 +- locale/gl/LC_MESSAGES/statusnet.po | 1521 ++++++++--------- locale/he/LC_MESSAGES/statusnet.po | 6 +- locale/hsb/LC_MESSAGES/statusnet.po | 79 +- locale/hu/LC_MESSAGES/statusnet.po | 7 +- locale/ia/LC_MESSAGES/statusnet.po | 18 +- locale/it/LC_MESSAGES/statusnet.po | 6 +- locale/ja/LC_MESSAGES/statusnet.po | 10 +- locale/ka/LC_MESSAGES/statusnet.po | 6 +- locale/ko/LC_MESSAGES/statusnet.po | 6 +- locale/mk/LC_MESSAGES/statusnet.po | 26 +- locale/ml/LC_MESSAGES/statusnet.po | 6 +- locale/nb/LC_MESSAGES/statusnet.po | 6 +- locale/nl/LC_MESSAGES/statusnet.po | 6 +- locale/pl/LC_MESSAGES/statusnet.po | 6 +- locale/pt/LC_MESSAGES/statusnet.po | 6 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 6 +- locale/ru/LC_MESSAGES/statusnet.po | 11 +- locale/statusnet.pot | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 6 +- locale/te/LC_MESSAGES/statusnet.po | 6 +- locale/tl/LC_MESSAGES/statusnet.po | 6 +- locale/uk/LC_MESSAGES/statusnet.po | 6 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 6 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 6 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 6 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 6 +- .../locale/de/LC_MESSAGES/AccountManager.po | 6 +- .../locale/es/LC_MESSAGES/AccountManager.po | 30 + .../locale/eu/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 6 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/he/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 6 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 6 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 6 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 6 +- plugins/Activity/locale/Activity.pot | 2 +- .../locale/ar/LC_MESSAGES/Activity.po | 8 +- .../locale/ca/LC_MESSAGES/Activity.po | 8 +- .../locale/de/LC_MESSAGES/Activity.po | 8 +- .../locale/es/LC_MESSAGES/Activity.po | 119 ++ .../locale/eu/LC_MESSAGES/Activity.po | 8 +- .../locale/gl/LC_MESSAGES/Activity.po | 8 +- .../locale/ia/LC_MESSAGES/Activity.po | 8 +- .../locale/mk/LC_MESSAGES/Activity.po | 8 +- .../locale/nl/LC_MESSAGES/Activity.po | 8 +- .../locale/ru/LC_MESSAGES/Activity.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 16 +- .../Adsense/locale/eu/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 6 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 11 +- plugins/Aim/locale/eu/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/gl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 6 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 6 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 16 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 6 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/es/LC_MESSAGES/ApiLogger.po | 27 + .../locale/fr/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 6 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 6 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 13 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/gl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 6 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/eu/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 6 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/es/LC_MESSAGES/Awesomeness.po | 30 + .../locale/fi/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 6 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/es/LC_MESSAGES/BitlyUrl.po | 101 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 6 +- .../locale/de/LC_MESSAGES/Blacklist.po | 6 +- .../locale/es/LC_MESSAGES/Blacklist.po | 47 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 6 +- .../locale/gl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 6 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 7 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 6 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 6 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 6 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 6 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 6 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/es/LC_MESSAGES/Blog.po | 97 ++ plugins/Blog/locale/eu/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 8 +- plugins/Blog/locale/tr/LC_MESSAGES/Blog.po | 96 ++ plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 20 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/gl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 6 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 6 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 6 +- .../locale/de/LC_MESSAGES/Bookmark.po | 6 +- .../locale/es/LC_MESSAGES/Bookmark.po | 270 +++ .../locale/eu/LC_MESSAGES/Bookmark.po | 6 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 6 +- .../locale/gl/LC_MESSAGES/Bookmark.po | 6 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 6 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 6 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 6 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 6 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 6 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 6 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 6 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 6 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 6 +- .../locale/br/LC_MESSAGES/CacheLog.po | 6 +- .../locale/de/LC_MESSAGES/CacheLog.po | 6 +- .../locale/es/LC_MESSAGES/CacheLog.po | 6 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 6 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/he/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 6 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 6 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 6 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 6 +- .../br/LC_MESSAGES/CasAuthentication.po | 6 +- .../ca/LC_MESSAGES/CasAuthentication.po | 6 +- .../de/LC_MESSAGES/CasAuthentication.po | 6 +- .../es/LC_MESSAGES/CasAuthentication.po | 6 +- .../eu/LC_MESSAGES/CasAuthentication.po | 6 +- .../fr/LC_MESSAGES/CasAuthentication.po | 6 +- .../gl/LC_MESSAGES/CasAuthentication.po | 6 +- .../hu/LC_MESSAGES/CasAuthentication.po | 6 +- .../ia/LC_MESSAGES/CasAuthentication.po | 6 +- .../mk/LC_MESSAGES/CasAuthentication.po | 6 +- .../nl/LC_MESSAGES/CasAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 6 +- .../ru/LC_MESSAGES/CasAuthentication.po | 6 +- .../tl/LC_MESSAGES/CasAuthentication.po | 6 +- .../uk/LC_MESSAGES/CasAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 6 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 6 +- .../de/LC_MESSAGES/ClientSideShorten.po | 6 +- .../es/LC_MESSAGES/ClientSideShorten.po | 8 +- .../eu/LC_MESSAGES/ClientSideShorten.po | 6 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 6 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../he/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 6 +- .../id/LC_MESSAGES/ClientSideShorten.po | 6 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 6 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 6 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/es/LC_MESSAGES/Comet.po | 17 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 6 +- .../locale/DirectionDetector.pot | 2 +- .../ast/LC_MESSAGES/DirectionDetector.po | 6 +- .../LC_MESSAGES/DirectionDetector.po | 6 +- .../br/LC_MESSAGES/DirectionDetector.po | 6 +- .../de/LC_MESSAGES/DirectionDetector.po | 6 +- .../es/LC_MESSAGES/DirectionDetector.po | 6 +- .../fi/LC_MESSAGES/DirectionDetector.po | 6 +- .../fr/LC_MESSAGES/DirectionDetector.po | 6 +- .../gl/LC_MESSAGES/DirectionDetector.po | 6 +- .../he/LC_MESSAGES/DirectionDetector.po | 6 +- .../ia/LC_MESSAGES/DirectionDetector.po | 6 +- .../id/LC_MESSAGES/DirectionDetector.po | 6 +- .../ja/LC_MESSAGES/DirectionDetector.po | 6 +- .../lb/LC_MESSAGES/DirectionDetector.po | 6 +- .../mk/LC_MESSAGES/DirectionDetector.po | 6 +- .../nb/LC_MESSAGES/DirectionDetector.po | 6 +- .../nl/LC_MESSAGES/DirectionDetector.po | 6 +- .../pt/LC_MESSAGES/DirectionDetector.po | 6 +- .../ru/LC_MESSAGES/DirectionDetector.po | 6 +- .../tl/LC_MESSAGES/DirectionDetector.po | 6 +- .../uk/LC_MESSAGES/DirectionDetector.po | 6 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 6 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 6 +- .../locale/ca/LC_MESSAGES/Directory.po | 6 +- .../locale/de/LC_MESSAGES/Directory.po | 6 +- .../locale/es/LC_MESSAGES/Directory.po | 173 ++ .../locale/eu/LC_MESSAGES/Directory.po | 6 +- .../locale/fi/LC_MESSAGES/Directory.po | 6 +- .../locale/fr/LC_MESSAGES/Directory.po | 6 +- .../locale/gl/LC_MESSAGES/Directory.po | 6 +- .../locale/ia/LC_MESSAGES/Directory.po | 6 +- .../locale/ja/LC_MESSAGES/Directory.po | 6 +- .../locale/mk/LC_MESSAGES/Directory.po | 6 +- .../locale/nl/LC_MESSAGES/Directory.po | 6 +- .../locale/sv/LC_MESSAGES/Directory.po | 6 +- .../locale/tl/LC_MESSAGES/Directory.po | 6 +- .../locale/uk/LC_MESSAGES/Directory.po | 6 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/gl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../es/LC_MESSAGES/DomainStatusNetwork.po | 29 + .../fr/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 6 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/es/LC_MESSAGES/DomainWhitelist.po | 82 + .../locale/gl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 6 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 6 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../eu/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 6 +- .../br/LC_MESSAGES/EmailRegistration.po | 6 +- .../ca/LC_MESSAGES/EmailRegistration.po | 6 +- .../de/LC_MESSAGES/EmailRegistration.po | 6 +- .../es/LC_MESSAGES/EmailRegistration.po | 194 +++ .../eu/LC_MESSAGES/EmailRegistration.po | 6 +- .../fr/LC_MESSAGES/EmailRegistration.po | 6 +- .../gl/LC_MESSAGES/EmailRegistration.po | 6 +- .../hu/LC_MESSAGES/EmailRegistration.po | 6 +- .../ia/LC_MESSAGES/EmailRegistration.po | 6 +- .../mk/LC_MESSAGES/EmailRegistration.po | 6 +- .../nl/LC_MESSAGES/EmailRegistration.po | 6 +- .../ru/LC_MESSAGES/EmailRegistration.po | 178 ++ .../sv/LC_MESSAGES/EmailRegistration.po | 6 +- .../tl/LC_MESSAGES/EmailRegistration.po | 6 +- .../uk/LC_MESSAGES/EmailRegistration.po | 6 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/es/LC_MESSAGES/EmailReminder.po | 53 + .../locale/eu/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/gl/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/ia/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 6 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 6 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/es/LC_MESSAGES/EmailSummary.po | 56 + .../locale/eu/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/gl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 6 +- plugins/Event/locale/Event.pot | 2 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/eu/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 16 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 8 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/eu/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/gl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 6 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 6 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/gl/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 6 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 6 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 6 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/eu/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 6 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eu/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 6 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ca/LC_MESSAGES/Geonames.po | 6 +- .../locale/de/LC_MESSAGES/Geonames.po | 6 +- .../locale/eu/LC_MESSAGES/Geonames.po | 6 +- .../locale/fi/LC_MESSAGES/Geonames.po | 6 +- .../locale/fr/LC_MESSAGES/Geonames.po | 6 +- .../locale/gl/LC_MESSAGES/Geonames.po | 6 +- .../locale/ia/LC_MESSAGES/Geonames.po | 6 +- .../locale/mk/LC_MESSAGES/Geonames.po | 6 +- .../locale/nl/LC_MESSAGES/Geonames.po | 6 +- .../locale/sv/LC_MESSAGES/Geonames.po | 6 +- .../locale/tl/LC_MESSAGES/Geonames.po | 6 +- .../locale/uk/LC_MESSAGES/Geonames.po | 6 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 6 +- .../locale/de/LC_MESSAGES/Gravatar.po | 6 +- .../locale/es/LC_MESSAGES/Gravatar.po | 6 +- .../locale/eu/LC_MESSAGES/Gravatar.po | 6 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 6 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/he/LC_MESSAGES/Gravatar.po | 6 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 6 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 6 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 6 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 6 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/eu/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/gl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../eu/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../gl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/eu/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/gl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 6 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/eu/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/ca/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/gl/LC_MESSAGES/Irc.po | 16 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/tr/LC_MESSAGES/Irc.po | 78 + plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 6 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../gl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../gl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/ca/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/gl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 6 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 6 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/eu/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/ca/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/gl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 6 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 6 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 6 +- .../locale/ca/LC_MESSAGES/Linkback.po | 6 +- .../locale/de/LC_MESSAGES/Linkback.po | 6 +- .../locale/es/LC_MESSAGES/Linkback.po | 6 +- .../locale/fi/LC_MESSAGES/Linkback.po | 6 +- .../locale/fr/LC_MESSAGES/Linkback.po | 6 +- .../locale/gl/LC_MESSAGES/Linkback.po | 6 +- .../locale/he/LC_MESSAGES/Linkback.po | 6 +- .../locale/ia/LC_MESSAGES/Linkback.po | 6 +- .../locale/id/LC_MESSAGES/Linkback.po | 6 +- .../locale/mk/LC_MESSAGES/Linkback.po | 6 +- .../locale/nb/LC_MESSAGES/Linkback.po | 6 +- .../locale/nl/LC_MESSAGES/Linkback.po | 6 +- .../locale/pt/LC_MESSAGES/Linkback.po | 6 +- .../locale/ru/LC_MESSAGES/Linkback.po | 6 +- .../locale/tl/LC_MESSAGES/Linkback.po | 6 +- .../locale/uk/LC_MESSAGES/Linkback.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 6 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 6 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/gl/LC_MESSAGES/Memcache.po | 6 +- .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/sv/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/gl/LC_MESSAGES/Memcached.po | 6 +- .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/sv/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/gl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/gl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/gl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 6 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 6 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/eu/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/gl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 8 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ca/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/eu/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/gl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- plugins/OMB/locale/OMB.pot | 2 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/de/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/gl/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 6 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 6 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/gl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../OfflineBackup/locale/OfflineBackup.pot | 2 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/eu/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/gl/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 6 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 6 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 8 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 6 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 6 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/eu/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/gl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 6 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/gl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 6 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/gl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 6 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 8 +- .../locale/ar/LC_MESSAGES/Realtime.po | 8 +- .../locale/br/LC_MESSAGES/Realtime.po | 8 +- .../locale/ca/LC_MESSAGES/Realtime.po | 8 +- .../locale/de/LC_MESSAGES/Realtime.po | 8 +- .../locale/fr/LC_MESSAGES/Realtime.po | 8 +- .../locale/gl/LC_MESSAGES/Realtime.po | 8 +- .../locale/ia/LC_MESSAGES/Realtime.po | 8 +- .../locale/lv/LC_MESSAGES/Realtime.po | 8 +- .../locale/mk/LC_MESSAGES/Realtime.po | 8 +- .../locale/ne/LC_MESSAGES/Realtime.po | 8 +- .../locale/nl/LC_MESSAGES/Realtime.po | 8 +- .../locale/pl/LC_MESSAGES/Realtime.po | 8 +- .../locale/sv/LC_MESSAGES/Realtime.po | 8 +- .../locale/tl/LC_MESSAGES/Realtime.po | 8 +- .../locale/tr/LC_MESSAGES/Realtime.po | 8 +- .../locale/uk/LC_MESSAGES/Realtime.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/gl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/gl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../gl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 6 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 6 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/he/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 6 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 6 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 6 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 6 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/gl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 8 +- .../locale/de/LC_MESSAGES/SearchSub.po | 8 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 8 +- .../locale/gl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 8 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 8 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 8 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/gl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 8 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/gl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/gl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 6 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 6 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 6 +- .../locale/de/LC_MESSAGES/SubMirror.po | 6 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 6 +- .../locale/gl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 6 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../gl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/de/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/gl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 8 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 6 +- .../locale/es/LC_MESSAGES/TightUrl.po | 6 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 6 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/he/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 6 +- .../locale/id/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 6 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 6 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 6 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/gl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 8 +- .../locale/de/LC_MESSAGES/UserFlag.po | 8 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 8 +- .../locale/gl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 37 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 8 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 8 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 8 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 6 +- .../locale/de/LC_MESSAGES/UserLimit.po | 6 +- .../locale/es/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/he/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 6 +- .../locale/id/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 6 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 6 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/gl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 6 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/gl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 6 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 6 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 6 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 8 +- .../locale/de/LC_MESSAGES/YammerImport.po | 8 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 8 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 8 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 8 +- 1641 files changed, 7944 insertions(+), 6854 deletions(-) create mode 100644 plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po create mode 100644 plugins/Activity/locale/es/LC_MESSAGES/Activity.po create mode 100644 plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po create mode 100644 plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po create mode 100644 plugins/Blog/locale/es/LC_MESSAGES/Blog.po create mode 100644 plugins/Blog/locale/tr/LC_MESSAGES/Blog.po create mode 100644 plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po create mode 100644 plugins/Directory/locale/es/LC_MESSAGES/Directory.po create mode 100644 plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po create mode 100644 plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po create mode 100644 plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po create mode 100644 plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po create mode 100644 plugins/Irc/locale/tr/LC_MESSAGES/Irc.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index fcf7a0206d..232f7d2ba0 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:35+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index 4032dd0920..a0f7442733 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:54+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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" @@ -6103,78 +6103,79 @@ msgstr "Няслушны тэкст вітаньня. Максымальная #. TRANS: users in user admin panel. %1$s is the invalid nickname. #, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "" +msgstr "Няслушная падпіска па змоўчваньні: «%1$s» не зьяўляецца карыстальнікам." #. TRANS: Fieldset legend in user administration panel. msgctxt "LEGEND" msgid "Profile" -msgstr "" +msgstr "Профіль" #. TRANS: Field label in user admin panel for setting the character limit for the bio field. msgid "Bio Limit" -msgstr "" +msgstr "Абмежаваньне біяграфіі" #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. msgid "Maximum length of a profile bio in characters." -msgstr "" +msgstr "Максымальная даўжыня біяграфіі ў профілі ў сымбалях." #. TRANS: Form legend in user admin panel. msgid "New users" -msgstr "" +msgstr "Новыя карыстальнікі" #. TRANS: Field label in user admin panel for setting new user welcome text. msgid "New user welcome" -msgstr "" +msgstr "Вітаньні новым карыстальнікам" #. TRANS: Tooltip in user admin panel for setting new user welcome text. msgid "Welcome text for new users (maximum 255 characters)." -msgstr "" +msgstr "Тэкст вітаньня для новых карыстальнікаў (максымальна 255 сымбаляў)." #. TRANS: Field label in user admin panel for setting default subscription for new users. msgid "Default subscription" -msgstr "" +msgstr "Падпіска па змоўчваньні" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. msgid "Automatically subscribe new users to this user." -msgstr "" +msgstr "Аўтаматычна падпісваць новых карыстальнікаў на гэтага карыстальніка." #. TRANS: Form legend in user admin panel. msgid "Invitations" -msgstr "" +msgstr "Запрашэньні" #. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. msgid "Invitations enabled" -msgstr "" +msgstr "Запрашэньні ўключаныя" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. msgid "Whether to allow users to invite new users." -msgstr "" +msgstr "Ці дазваляць карыстальнікам запрашаць новых карыстальнікаў." #. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." -msgstr "" +msgstr "Захаваць налады карыстальніка." #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format msgid "%1$s groups, page %2$d" -msgstr "" +msgstr "Групы %1$s, старонка %2$d" #. TRANS: Link text on group page to search for groups. msgid "Search for more groups" -msgstr "" +msgstr "Шукаць іншыя групы" #. TRANS: Text on group page for a user that is not a member of any group. #. TRANS: %s is a user nickname. #, php-format msgid "%s is not a member of any group." -msgstr "" +msgstr "%s не зьяўляецца ўдзельнікам ніводнай групы." #. TRANS: Text on group page for a user that is not a member of any group. This message contains #. TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed. #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +"Паспрабуйце [пашукаць групы](%%action.groupsearch%%) і далучыцца да іх." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom group notice feed. @@ -6183,12 +6184,12 @@ msgstr "" #. TRANS: %1$s is a user name, %2$s is a site name. #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "" +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. @@ -6197,14 +6198,16 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2011 StatusNet, " "Inc. and contributors." msgstr "" +"Гэты сайт створаны на аснове %1$s вэрсіі %2$s. Аўтарскія правы 2008-2011 " +"StatusNet, Inc. і распрацоўшчыкі." #. TRANS: Header for StatusNet contributors section on the version page. msgid "Contributors" -msgstr "" +msgstr "Аўтары" #. TRANS: Header for StatusNet license section on the version page. msgid "License" -msgstr "" +msgstr "Ліцэнзія" #. TRANS: Content part of StatusNet version page. msgid "" @@ -6213,6 +6216,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version." msgstr "" +"StatusNet — вольнае праграмнае забесьпячэньне: Вы можаце распаўсюджваць яго " +"і/альбо зьмяняць яго ў адпаведнасьці з умовамі ліцэнзіі GNU Affero General " +"Public, якая апублікаваная Фундацыяй Вольнага Праграмнага Забесьпячэньня, " +"вэрсіі 3 ці любой больш позьняй." #. TRANS: Content part of StatusNet version page. msgid "" @@ -6221,6 +6228,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details." msgstr "" +"Гэтая праграма распаўсюджваецца з надзеяй, што яна будзе карыснай, але БЕЗ " +"ГАРАНТЫІ; нават без няяўнай гарантыі ГАНДЛЁВАЙ ПРЫДАТНАСЬЦІ ці ПРЫДАТНАСЬЦІ " +"ВЫКАРЫСТАНЬНЯ. Дадатковую інфармацыю глядзіце ў ліцэнзіі GNU Affero General " +"Public." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6229,49 +6240,51 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"Вам неабходна атрымаць копію ліцэнзіі GNU Affero General Public з гэтай " +"праграмай. Калі не, глядзіце %s." #. TRANS: Header for StatusNet plugins section on the version page. msgid "Plugins" -msgstr "" +msgstr "Дапаўненьні" #. TRANS: Column header for plugins table on version page. msgctxt "HEADER" msgid "Name" -msgstr "" +msgstr "Назва" #. TRANS: Column header for plugins table on version page. msgctxt "HEADER" msgid "Version" -msgstr "" +msgstr "Вэрсія" #. TRANS: Column header for plugins table on version page. msgctxt "HEADER" msgid "Author(s)" -msgstr "" +msgstr "Аўтар(ы)" #. TRANS: Column header for plugins table on version page. msgctxt "HEADER" msgid "Description" -msgstr "" +msgstr "Апісаньне" #. TRANS: Activity title when marking a notice as favorite. msgid "Favor" -msgstr "" +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. #, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "" +msgstr "%1$s дадаў запіс %2$s да ўлюблёных." #. TRANS: Server exception thrown when a URL cannot be processed. #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "Немагчыма апрацаваць URL-адрас «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! msgid "Robin thinks something is impossible." -msgstr "" +msgstr "Робін лічыць, што гэта немагчыма." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. @@ -6284,84 +6297,88 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr[0] "" +"Файл ня можа быць болей %1$d байта, а дасланы Вамі файл ўтрымлівае %2$d " +"байт. Паспрабуйце загрузіць меншую вэрсію." msgstr[1] "" +"Файл ня можа быць болей %1$d байты, а дасланы Вамі файл ўтрымлівае %2$d " +"байтаў. Паспрабуйце загрузіць меншую вэрсію." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. #, 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." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Файл такога памеру перавысіць Вашую квоту карыстальніка ў %d байт." +msgstr[1] "Файл такога памеру перавысіць Вашую квоту карыстальніка ў %d байты." #. 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. #, 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." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Файл такога памеру перавысіць Вашую штомесячную квоту ў %d байт." +msgstr[1] "Файл такога памеру перавысіць Вашую штомесячную квоту ў %d байты." #. TRANS: Client exception thrown if a file upload does not have a valid name. msgid "Invalid filename." -msgstr "" +msgstr "Няслушная назва файла." #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Няслушны ідэнтыфікатар профілю %s." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. #, php-format msgid "Group ID %s is invalid." -msgstr "" +msgstr "Няслушны ідэнтыфікатар групы %s." #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." -msgstr "" +msgstr "Памылка далучэньня да групы." #. TRANS: Exception thrown when trying to leave a group the user is not a member of. msgid "Not part of group." -msgstr "" +msgstr "Не зьяўляецца часткай групы." #. TRANS: Exception thrown when trying to leave a group fails. msgid "Group leave failed." -msgstr "" +msgstr "Памылка выхаду з групы." #. TRANS: Activity title. msgid "Join" -msgstr "" +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. #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s далучыўся да групы %2$s." #. TRANS: Server exception thrown when updating a local group fails. msgid "Could not update local group." -msgstr "" +msgstr "Немагчыма абнавіць лякальную групу." #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #, php-format msgid "Could not create login token for %s" -msgstr "" +msgstr "Немагчыма стварыць ключ уваходу для %s" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Немагчыма захаваць новы пароль." +msgstr "Немагчыма стварыць экзэмпляр клясы %s." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "Ня знойдзеная назва базы зьвестак." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. msgid "You are banned from sending direct messages." -msgstr "" +msgstr "Вы заблякаваны ад дасылкі непасрэдных паведамленьняў." #. TRANS: Message given when a message could not be stored on the server. msgid "Could not insert message." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 95eb7488ca..0c788872b6 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:58+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: bg\n" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 8703afbfcd..4d9ffa7356 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:05+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" @@ -1695,7 +1695,7 @@ msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" #. TRANS: Client error for an already confirmed email/jabber/sms address. #. TRANS: Client error for an already confirmed IM address. msgid "That address has already been confirmed." -msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." +msgstr "Kadarnaet eo bet ar chomlec'h-mañ c'hoazh." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. @@ -4965,7 +4965,7 @@ msgstr[1] "Krouet gant %1$s - moned %2$s dre ziouer - %3$d implijer" #. TRANS: Header on the OAuth application page. msgid "Application actions" -msgstr "Obererezhioù ar poellad" +msgstr "Obererezhioù an arload" #. TRANS: Link text to edit application on the OAuth application page. #, fuzzy diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index f46d279ba1..c1c1926eff 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,12 +16,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:11+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -5352,7 +5352,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5360,7 +5360,7 @@ msgid "" msgstr "" "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" "ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure [StatusNet]" -"(http://status.net/). " +"(http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -6209,30 +6209,28 @@ 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." msgstr "" -"L'StatusNet és programari lliure; podeu redistribuir-lo i/o modificar-lo " +"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 " -"i com la publica la Free Software Foundation; tant per a la versió 3 de la " -"llicència, com (a la vostra discreció) per a una versió posterior. " +"com la publica la Free Software Foundation; tant per a la versió 3 de la " +"llicència, com (a la vostra discreció) per a qualsevol 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." msgstr "" -"Aquest programa es distribueix amb la voluntat que sigui útil, perquè sense " +"Aquest programa es distribueix amb la voluntat que sigui útil, però sense " "cap mena de garantia; sense tampoc cap garantia implícita respecte a la seva " "comercialització o idoneïtat per a cap propòsit en particular. Consulteu la " -"llicència GNU Affero General Public License per a més detalls. " +"llicència GNU Affero General Public License per a més detalls." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index debb167590..f43d2ae7e2 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: cs\n" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 3bf7088dd4..375d26a3d7 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -32,12 +32,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" @@ -9111,7 +9111,7 @@ msgstr "Statistik" #. TRANS: Label for user statistics. msgid "User ID" -msgstr "Benutzer-ID" +msgstr "Benutzerkennung" #. TRANS: Label for user statistics. msgid "Member since" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 7465577e92..35a05c79b8 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:23+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: en-gb\n" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index bf34564e4d..64d642375d 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,12 +17,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 5e57ef6bc7..2f5dcc1463 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -25,12 +25,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -247,9 +247,8 @@ msgid "No such user." msgstr "No existe ese usuario." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Línea temporal de %s" +msgstr "Línea de tiempo principal" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. @@ -1751,15 +1750,13 @@ msgstr "Conversación" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Canal de mensajes para %s (Atom)" +msgstr "Fuente de mensajes (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Canal de mensajes para %s (RSS 2.0)" +msgstr "Fuente de mensajes (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -2000,9 +1997,8 @@ msgctxt "MENU" msgid "Help" msgstr "Ayuda" -#, fuzzy msgid "Getting started" -msgstr "Se guardó configuración." +msgstr "Primeros pasos" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" @@ -2043,7 +2039,6 @@ msgctxt "MENU" msgid "Groups" msgstr "Grupos" -#, fuzzy msgid "Using groups" msgstr "Grupos de usuario" @@ -2052,7 +2047,7 @@ msgid "API" msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2107,7 +2102,6 @@ msgid "Organization is required." msgstr "Se requiere una organización." #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#, fuzzy msgid "Organization is too long (maximum 255 characters)." msgstr "El texto de organización es muy largo (máx. 255 caracteres)." @@ -2167,33 +2161,29 @@ msgstr "Eliminar %s de la lista" #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "No es una etiqueta válida para personas: %s." +msgstr "Editar lista de %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." -msgstr "Ningún nombre de usuario o ID." +msgstr "Ningún usuario o ID." #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "No existe ese usuario." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Para editar el grupo debes ser administrador." +msgstr "Debe ser el creador de la etiqueta para editarlo." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Usa este formulario para editar el grupo." +msgstr "Utilice este formulario para editar la lista." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Borrar mensaje" +msgstr "Eliminar anulado." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2602,9 +2592,8 @@ msgid "Do not block this user from this group." msgstr "No bloquear este usuario de este grupo" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "Bloquear este usuario de este grupo" +msgstr "Bloquear este usuario de este grupo." #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. msgid "Database error blocking user from group." @@ -2709,7 +2698,7 @@ msgstr "Grupos, página %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -2789,13 +2778,13 @@ msgstr "Configuración de mensajería instantánea" #. 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 "" -"Puedes enviar y recibir mensajes vía [mensajería instantána](%%doc.im%%) de " -"Jabber/GTalk. Configura tu dirección y opciones abajo." +"Puedes enviar y recibir mensajes vía [mensajería instantána](%%doc.im%%). " +"Configura tu dirección y opciones abajo." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2972,7 +2961,6 @@ msgstr[1] "" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of #. TRANS: e-mail addresses to which invitations were sent. -#, fuzzy msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "Invitacion(es) enviada(s) a las siguientes personas:" @@ -3005,15 +2993,14 @@ msgid "You must be logged in to join a group." msgstr "Debes estar conectado para unirte a un grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s se ha unido al grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Desconocido" +msgstr "Error de Grupo Unión desconocido." #. 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. @@ -3901,23 +3888,22 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Listas de %1$s, página %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "No puede ver otras listas privadas" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Moderar" +msgstr "Modo" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Bandeja de salida para %s" +msgstr "Listas para %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3929,19 +3915,16 @@ msgid "Show private tags." msgstr "Mostrar etiquetas privadas." #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Público" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "No existe tal etiqueta." +msgstr "Mostrar etiquetas públicas." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Ir" @@ -3949,7 +3932,7 @@ msgstr "Ir" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3960,30 +3943,29 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " "herramienta de software libre [StatusNet](http://status.net/). Sus miembros " -"comparten mensajes cortos acerca de su vida e intereses. " +"comparten mensajes cortos acerca de su vida e intereses." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" +msgstr "%s no ha creado ninguna [listas] (%%% %doc.lists% %%%) todavía." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listas con %s en ellos" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Listas con %1$s, página %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3991,47 +3973,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " -"[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " -"herramienta de software libre [StatusNet](http://status.net/). Sus miembros " -"comparten mensajes cortos acerca de su vida e intereses. " +"Las listas son similares a cómo ordenar personas en % %site.name% %, un " +"[micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) servicio " +"basado en el Software libre [herramienta de StatusNet](http://status.net/). " +"Puede entonces fácilmente realizar un seguimiento de lo que están haciendo " +"por suscribirse a la línea de tiempo de la lista." #. 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. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" +msgstr "%s no ha sido [lista] (%%% %doc.lists% %%%) por nadie todavía." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "Suscrito a %s." +msgstr "Los suscriptores a la lista %1$s por %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Los suscriptores a la lista %1$s por %2$s , página%3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Suscrito a %s." +msgstr "Listas suscritas por %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s suscrippciones, página %2$d" +msgstr "Listas suscritas por %1$s, página %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4042,7 +4024,7 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " "herramienta de software libre [StatusNet](http://status.net/). Sus miembros " -"comparten mensajes cortos acerca de su vida e intereses. " +"comparten mensajes cortos acerca de su vida e intereses." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4086,9 +4068,8 @@ msgstr "" "plugin para más detalles." #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "!Idioma predeterminado" +msgstr "Plugins por defecto" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" @@ -4101,13 +4082,12 @@ msgstr "" #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Campo no identificado %s ." #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Buscar sitio" +msgstr "Resultados de la búsqueda" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." @@ -4131,7 +4111,6 @@ msgstr "Información del perfil" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" @@ -4151,9 +4130,8 @@ msgstr "Página de inicio" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "URL of your homepage, blog, or profile on another site." -msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" +msgstr "URL de tu página, blog o perfil en otro sitio." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the @@ -4161,7 +4139,7 @@ msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" @@ -4169,7 +4147,6 @@ msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#, fuzzy msgid "Describe yourself and your interests." msgstr "Descríbete y cuéntanos acerca de tus intereses" @@ -4202,7 +4179,6 @@ msgid "Tags" msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." @@ -4215,9 +4191,8 @@ msgid "Language" msgstr "Idioma" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." -msgstr "Lenguaje de preferencia" +msgstr "Idioma preferido." #. TRANS: Dropdownlist label in form for profile settings. msgid "Timezone" @@ -4228,7 +4203,6 @@ msgid "What timezone are you normally in?" msgstr "En que zona horaria se encuentra normalmente?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" @@ -4236,14 +4210,12 @@ msgstr "" "para no-humanos)" #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Suscripciones" +msgstr "Política de suscripción" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Sólo puede seguir personas" +msgstr "Dejar que alguien me siga" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" @@ -4263,7 +4235,7 @@ msgstr "Hacer mis mensajes visibles sólo para mis seguidores" #. TRANS: characters for the biography (%d). #. TRANS: Form validation error on registration page when providing too long a bio text. #. TRANS: %d is the maximum number of characters for bio; used for plural. -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." msgstr[0] "La biografía es muy larga (máx. %d caracteres)." @@ -4275,7 +4247,6 @@ msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" #. TRANS: Validation error in form for profile settings. -#, fuzzy msgid "Language is too long (maximum 50 characters)." msgstr "Idioma es muy largo ( max 50 car.)" @@ -4285,18 +4256,16 @@ msgstr "Idioma es muy largo ( max 50 car.)" #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Etiqueta inválida: \"% s\"" +msgstr "Etiqueta no válida: \" %s \"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "No se pudo actualizar el usuario para autosuscribirse." #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#, fuzzy msgid "Could not save location prefs." msgstr "No se han podido guardar las preferencias de ubicación." @@ -4316,9 +4285,8 @@ msgid "Beyond the page limit (%s)." msgstr "Más allá del límite de páginas (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "No se pudo acceder a corriente pública." +msgstr "No se pudo recuperar la línea de tiempo pública." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4332,24 +4300,20 @@ msgid "Public timeline" msgstr "Línea temporal pública" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Canal público (Atom)" +msgstr "Feed de línea de tiempo pública (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Canal público (RSS 1.0)" +msgstr "Suscripción a línea de tiempo (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Canal público (RSS 2.0)" +msgstr "Suscripción a línea de tiempo (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Canal público (Atom)" +msgstr "Suscripción a línea de tiempo (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4400,9 +4364,9 @@ msgstr "" "[StatusNet](http://status.net/) tool." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "¡Actualizaciones de todos en %s!" +msgstr "Actualizaciones de todos en %s" #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4567,15 +4531,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "No existe argumento de ID." +msgstr "Ningún parámetro id." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "No existe el archivo %d" +msgstr "No hay tal archivo \" %d \"." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4590,7 +4553,6 @@ msgid "Registration successful" msgstr "Registro exitoso." #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrarse" @@ -4600,9 +4562,8 @@ msgid "Registration not allowed." msgstr "Registro de usuario no permitido." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." -msgstr "No puedes registrarte si no estás de acuerdo con la licencia." +msgstr "No se puede registrar si no acepta la licencia." #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." @@ -4621,13 +4582,11 @@ msgstr "" "mensajes y enviar vínculos de ellos a tus amigos y colegas." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirmar" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Correo electrónico" @@ -4642,7 +4601,6 @@ msgid "Longer name, preferably your \"real\" name." msgstr "Nombre largo, preferiblemente tu nombre \"real\"" #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Registrarse" @@ -4726,9 +4684,9 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs while delisting a user. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "There was an unexpected error while delisting %s." -msgstr "Se ha producido un error mientras se enlistaba %s." +msgstr "Se ha producido un error mientras se eliminaba la lista %s." #. TRANS: Client error displayed when an unknown error occurs while listing a user. #. TRANS: %s is a profile URL. @@ -4737,11 +4695,12 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"Hubo un problema al mostrar la lista %s. El servidor remoto probablemente no " +"está respondiendo correctamente. Por favor intente nuevamente mas tarde." #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Licencia" +msgstr "Sin listar" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4778,9 +4737,9 @@ msgstr "Respuestas a %1$s, página %2$d" #. 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 "Feed de avisos de %s" +msgstr "Respuestas de suscripción para %s (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4832,25 +4791,22 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." -msgstr "Respuestas a %1$s en %2$s!" +msgstr "Respuestas a %1$s en %2$s" #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes." +msgstr "Sólo usuarios registrados pueden restaurar su cuenta." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Aún no has registrado aplicación alguna." +msgstr "No puede restaurar tu cuenta." #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. -#, fuzzy msgid "No uploaded file." -msgstr "Subir archivo" +msgstr "Ningún archivo cargado." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." @@ -4889,9 +4845,8 @@ msgstr "Error del sistema subir el archivo" #. TRANS: Client exception thrown when a feed is not an Atom feed. #. TRANS: Client exception thrown when an imported feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "Todos los miembros" +msgstr "No es una fuente de Atom." #. TRANS: Success message when a feed has been restored. msgid "" @@ -4904,12 +4859,16 @@ msgstr "" #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" +"Se restaurará la alimentación. Por favor, espere unos minutos para obtener " +"los resultados." #. TRANS: Form instructions for feed restore. msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" +"Puede cargar una copia de la cronología de Secuencias de actividad ." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4920,7 +4879,6 @@ msgid "You cannot revoke user roles on this site." msgstr "No puedes revocar funciones de usuario en este sitio." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "El usuario no tiene esta función." @@ -4940,18 +4898,17 @@ msgstr "Al usuario ya se le ha impuesto restricciones." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "No es una etiqueta válida para personas: %s." +msgstr "No es una lista válida: %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Usuarios auto etiquetados con %1$s - página %2$d" +msgstr "Usuarios autoetiquetados con %1$s - página %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sesiones" @@ -4961,7 +4918,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 "Sesiones" @@ -4973,9 +4929,8 @@ msgstr "Gestionar sesiones" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Si manejamos las sesiones nosotros mismos." +msgstr "Manejar las sesiones nosotros mismos." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4983,14 +4938,12 @@ msgid "Session debugging" msgstr "Depuración de sesión" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." -msgstr "Activar la salida de depuración para sesiones." +msgstr "Habilitar depuración de salida para las sesiones." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Guardar la configuración de acceso" +msgstr "Guardar configuración de sesión" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -5003,7 +4956,7 @@ msgstr "Perfil de la aplicación" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" msgstr[0] "Creado por %1$s - acceso predeterminado %2$s - %3$d usuarios" @@ -5014,7 +4967,6 @@ msgid "Application actions" msgstr "Acciones de la aplicación" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Editar" @@ -5049,13 +5001,12 @@ msgid "Authorize URL" msgstr "Autorizar URL" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Nota: Nuestro sistema sólo es compatible con firmas HMAC-SHA1. No son " -"compatibles las firmas de texto sin formato." +"Nota: Se admiten las firmas HMAC-SHA1. No se admite el método de firma de " +"texto plano." #. 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?" @@ -5072,9 +5023,9 @@ msgid "Could not retrieve favorite notices." msgstr "No se pudo recibir avisos favoritos." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Canal de las amistades de %s (Atom)" +msgstr "Canal de los amigos de %s (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5138,9 +5089,9 @@ msgid "%1$s group, page %2$d" msgstr "grupo %1$s, página %2$d" #. 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 "Canal de mensajes del grupo %s (Atom)" +msgstr "Canal de mensajes del grupo %s (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5184,7 +5135,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5194,7 +5145,7 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " "herramienta de software libre [StatusNet](http://status.net/). Sus miembros " -"comparten mensajes cortos acerca de su vida e intereses. " +"comparten mensajes cortos acerca de su vida e intereses." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5217,9 +5168,8 @@ msgid "Message from %1$s on %2$s" msgstr "Mensaje de %1$s en %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "La mensajería instantánea no está disponible." +msgstr "No disponible" #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5227,55 +5177,55 @@ msgstr "Mensaje borrado" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Usuarios auto etiquetados con %1$s - página %2$d" +msgstr "Línea de tiempo privado para %1$s listado por usted, página%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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Usuarios auto etiquetados con %1$s - página %2$d" +msgstr "Línea de tiempo para %1$s listado por usted, página%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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Línea de tiempo para %1$s lista de %2$s , página %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 "Línea de tiempo privado de %s de usted" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. #, php-format msgid "Timeline for %s list by you" -msgstr "" +msgstr "Línea de tiempo para %s de usted" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Respuestas a %1$s en %2$s!" +msgstr "Línea de tiempo para %1$s por la lista %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Canal de las amistades de %s (Atom)" +msgstr "Fuente para %1$s lista de %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " -"todavía." +"Esta es la línea de tiempo para %1$s lista de %2$s pero nadie ha " +"publicado nada aún." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." @@ -5283,7 +5233,7 @@ msgstr "Intenta etiquetar mas usuarios." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" @@ -5293,9 +5243,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 "Licencia" +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. @@ -5310,9 +5259,8 @@ msgstr "(Ninguno)" #. 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 "Ver más" +msgstr "Mostrar todos" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -5321,21 +5269,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s, página %2$s" +msgstr "Avisos de %1$s etiquetadas por %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Avisos por %1$s etiquetas %2$s , página%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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Mensajes etiquetados con %1$s, página %2$d" +msgstr "Avisos por %1$s , página %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5345,9 +5293,9 @@ msgstr "Canal de avisos de %1$s etiquetados %2$s (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 "Canal de mensajes para %s (Atom)" +msgstr "Canal de mensajes para %s (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5374,9 +5322,10 @@ msgid "FOAF for %s" msgstr "Amistades de amistades de %s" #. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." -msgstr "Esta es la línea temporal de %1$s, pero %2$s aún no ha publicado nada." +msgstr "" +"Esta es la línea de tiempo para %1$s , pero %1$s no ha publicado nada aún." #. TRANS: Second sentence of empty list message for a stream for the user themselves. msgid "" @@ -5413,15 +5362,15 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool." msgstr "" -"**% s ** tiene una cuenta en %%%%site.name%%%%, un servicio de [microblogueo]" -"(http://en.wikipedia.org/wiki/Micro-blogging), basado en la herramienta de " -"software libre [StatusNet](http://status.net/). " +"** %s ** tiene una cuenta en %%% %site.name% %%%, un [micro-blogging](http://" +"en.wikipedia.org/wiki/Micro-blogging) servicio basado en el Software libre " +"[herramienta de StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5438,7 +5387,6 @@ msgid "User is already silenced." msgstr "El usuario ya ha sido silenciado." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Sitio" @@ -5478,19 +5426,16 @@ msgid "Dupe limit must be one or more seconds." msgstr "El límite de duplicación debe ser de 1 o más segundos." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "General" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Nombre del sitio" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "El nombre de tu sitio, por ejemplo, \"Microblog tucompañía\"" @@ -5499,33 +5444,30 @@ msgid "Brought by" msgstr "Traído por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Texto utilizado para los vínculos a créditos en el pie de cada página" +msgstr "Texto utilizado para enlace de créditos en el pie de cada página." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Traído por URL" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL utilizado para el vínculo a los créditos en el pie de cada página" +msgstr "" +"Dirección URL utilizada para enlace de créditos en el pie de cada página." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Correo electrónico" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." msgstr "Correo electrónico de contacto para tu sitio" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" -msgstr "Configuraciones regionales" +msgstr "Local" #. TRANS: Dropdown label on site settings panel. msgid "Default timezone" @@ -5540,15 +5482,13 @@ msgid "Default language" msgstr "!Idioma predeterminado" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" -"Idioma del sitio cuando la autodetección de la configuración del navegador " -"no está disponible" +"El idioma del sitio cuando no está disponible la detección automática de la " +"configuración del navegador." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Límites" @@ -5582,9 +5522,8 @@ msgid "SSL logo" msgstr "Logo SSL" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Guardar la configuración del sitio" +msgstr "Guardar la configuración del sitio." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5599,27 +5538,21 @@ msgid "Unable to save site notice." msgstr "No se pudo guarda el aviso del sitio." #. TRANS: Client error displayed when a site-wide notice was longer than allowed. -#, fuzzy msgid "Maximum length for the site-wide notice is 255 characters." -msgstr "" -"La longitud máxima para el aviso que va a lo ancho del sitio es de 255 " -"caracteres." +msgstr "Longitud máxima de noticia en todo el sitio es de 255 caracteres." #. TRANS: Label for site-wide notice text field in admin panel. msgid "Site notice text" msgstr "Texto del mensaje del sitio" #. TRANS: Tooltip for site-wide notice text field in admin panel. -#, fuzzy msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -"Texto del mensaje que va a lo ancho del sitio (máximo 255 caracteres; se " -"acepta HTML)" +"Texto de aviso en todo el sitio (255 caracteres como máximo; HTML permitido)" #. TRANS: Button title to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Guardar el mensaje del sitio" +msgstr "Guardar el aviso del sitio." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5666,9 +5599,9 @@ msgid "SMS phone number" msgstr "Número de teléfono de SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." -msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" +msgstr "" +"Número de teléfono, sin signos de puntuación o espacios, con código de área." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5716,9 +5649,8 @@ msgid "That is the wrong confirmation number." msgstr "Ese no es el número de confirmación" #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "No se pudo eliminar la confirmación de mensajería instantánea." +msgstr "No se pudo eliminar la confirmación de SMS." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5757,7 +5689,6 @@ msgid "No code entered." msgstr "No ingresó el código" #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Capturas" @@ -5779,7 +5710,6 @@ msgid "Invalid snapshot report URL." msgstr "URL de instantánea de reporte inválido" #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Capturas" @@ -5797,16 +5727,14 @@ msgid "Data snapshots" msgstr "Capturas de datos" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Cuándo enviar datos estadísticos a los servidores status.net" +msgstr "Cuándo enviar datos estadísticos a los servidores de status.net" #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." msgstr "Las instantáneas se enviarán una vez cada N visitas Web" @@ -5815,12 +5743,10 @@ msgid "Report URL" msgstr "Reportar URL" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." msgstr "Las capturas se enviarán a este URL" #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." msgstr "Guardar la configuración de instantáneas" @@ -5839,46 +5765,43 @@ msgstr "Solo tú puedes aprobar tus propias suscripciones pendientes." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "%s miembros en el grupo" +msgstr "%s suscriptores a la espera de aprobación" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "%1$s miembros de grupo, página %2$d" +msgstr "%1$s suscriptores en espera de aprobación, página %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Lista de los usuarios en este grupo." +msgstr "Lista de usuarios esperando aprobación para suscribirse a usted." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Suscrito" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Debes estar conectado para crear un grupo" +msgstr "Debe haber iniciado sesión para darse de baja de una lista." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "No existe argumento de ID." +msgstr "No existe ID." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "No se pudo unir el usuario %s al grupo %s" +msgstr "No se puede suscribir al usuario %1$s a la lista %2$s:%3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "%1$s suscriptores, página %2$d" +msgstr "%1$s suscrito a la lista %2$s de %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5952,7 +5875,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5974,12 +5897,11 @@ msgid "%s is not listening to anyone." msgstr "%s no está escuchando a nadie." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" msgstr "Canal de mensajes para %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "IM" @@ -5996,9 +5918,9 @@ msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Canal de mensajes con etiqueta %s (Atom)" +msgstr "Canal de mensajes con etiqueta %s (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6021,69 +5943,60 @@ msgstr "Canal de mensajes con etiqueta %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "No puedes enviar mensaje a este usuario." +msgstr "No puede etiquetar este usuario." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "Perfil de usuario" +msgstr "Listar un perfil" #. 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 "Error de Ajax" +msgstr "Error" #. TRANS: Header in list form. msgid "User profile" msgstr "Perfil de usuario" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "Límites" +msgstr "Lista de usuario" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Límites" +msgstr "Listas" #. TRANS: Field title on list form. -#, fuzzy msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Etiquetas para ti (letras, números, -, ., y _), separadas por comas o " -"espacios" +"Listas para este usuario (letras, números,-,. y _), separados por comas o " +"espacio." #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Etiquetas" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Se guardó la contraseña." +msgstr "Listas guardadas." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" -"Usa este formulario para agregar etiquetas a tus suscriptores o " -"suscripciones." +"Utilice este formulario para agregar tus suscriptores o suscripciones a " +"listas." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6107,14 +6020,13 @@ msgstr "Desuscrito" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "%1$s suscriptores, página %2$d" +msgstr "%1$s elimina suscripción a la lista %2$s de %3$s" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "Configuración de mensajería instantánea" +msgstr "Configuración de direcciones URL" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6127,9 +6039,8 @@ msgid " (free service)" msgstr " (servicio libre)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "Ninguno" +msgstr "[Ninguno]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" @@ -6160,21 +6071,21 @@ msgstr "Texto mas largo de" msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"URLs en mensajes largos serán acortados, 0 significa que todos serán " +"acortados." #. TRANS: Form validation error for form "Other settings" in user profile. -#, fuzzy msgid "URL shortening service is too long (maximum 50 characters)." -msgstr "El servicio de acortamiento de URL es muy largo (máx. 50 caracteres)." +msgstr "" +"Servicio de acortamiento de URL es demasiado larga (máximo 50 caracteres)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "Contenido de mensaje inválido." +msgstr "Número no válido para la longitud máxima de URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Contenido de mensaje inválido." +msgstr "Número máximo de longitud de noticia inválido." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." @@ -6194,18 +6105,16 @@ msgid "Invalid bio limit. Must be numeric." msgstr "Límite para la bio inválido: 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 bienvenida inválido. La longitud máx. es de 255 caracteres." +msgstr "Texto bienvenida no válido. Longitud máxima es de 255 caracteres." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" +msgstr "Subscripciónn predeterminada no válida: \" %1$s \" no es un usuario." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -6227,9 +6136,8 @@ msgid "New user welcome" msgstr "Bienvenida a nuevos usuarios" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#, fuzzy msgid "Welcome text for new users (maximum 255 characters)." -msgstr "Texto de bienvenida para nuevos usuarios (máx. 255 caracteres)." +msgstr "Texto Bienvenido para los nuevos usuarios (máximo 255 caracteres)." #. TRANS: Field label in user admin panel for setting default subscription for new users. msgid "Default subscription" @@ -6252,9 +6160,8 @@ msgid "Whether to allow users to invite new users." msgstr "Si permitir a los usuarios invitar nuevos usuarios." #. TRANS: Button title to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." -msgstr "Guardar la configuración del sitio" +msgstr "Guardar configuración de 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. @@ -6294,7 +6201,7 @@ msgstr "%s StatusNet" #. 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." @@ -6311,30 +6218,28 @@ 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." 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 " -"publicado por la Fundación del Software Libre, bien por la versión 3 de la " -"Licencia, o cualquier versión posterior (la de tu elección). " +"StatusNet es software libre: usted puede redistribuirlo y/o modificarlo bajo " +"los términos de la GNU Affero General Public License publicada por la Free " +"Software Foundation, bien la versión 3 de la licencia, o (a su opción) " +"cualquier versión 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." 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 " -"IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Consulte la Licencia Pública General " -"de Affero AGPL para más detalles. " +"Este programa se distribuye con la esperanza de que será útil, pero sin " +"ninguna garantía; ni siquiera la garantía implícita de comerciabilidad o " +"idoneidad para un propósito PARTICULAR. Consulte la GNU Affero General " +"Public License para más detalles." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6351,25 +6256,21 @@ msgid "Plugins" msgstr "Complementos" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Nombre" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Versión" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" -msgstr "Autor(es)" +msgstr "Autor (es)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Descripción" @@ -6380,9 +6281,9 @@ msgstr "Aceptar" #. 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. -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) agregó tu mensaje a los favoritos" +msgstr "%1$s ha marcado la noticia %2$s como favorito." #. TRANS: Server exception thrown when a URL cannot be processed. #, php-format @@ -6396,7 +6297,7 @@ msgstr " Robin piensa que algo es imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " "Try to upload a smaller version." @@ -6404,15 +6305,15 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr[0] "" -"Ningún archivopuede ser de tamaño mayor a %1$d bytes y el archivo que " +"Ningún archivo puede ser de tamaño mayor a %1$d bytes y el archivo que " "enviaste es de %2$d bytes. Trata de subir una versión más pequeña." msgstr[1] "" -"Ningún archivopuede ser de tamaño mayor a %1$d bytes y el archivo que " +"Ningún archivo puede ser de tamaño mayor a %1$d bytes y el archivo que " "enviaste es de %2$d bytes. Trata de subir una versión más pequeña." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#, fuzzy, php-format +#, 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." msgstr[0] "" @@ -6422,7 +6323,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. -#, fuzzy, php-format +#, 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." msgstr[0] "" @@ -6442,9 +6343,9 @@ msgstr "ID del perfil %s no es válida." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "Error al guardar el usuario; inválido." +msgstr "ID de grupo %s no es válido." #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." @@ -6466,7 +6367,7 @@ msgstr "Unirse" #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s se unió al grupo %2$s." #. TRANS: Server exception thrown when updating a local group fails. msgid "Could not update local group." @@ -6479,9 +6380,9 @@ msgid "Could not create login token for %s" msgstr "No se pudo crear el token de acceso para %s" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "No se puede guardar la nueva contraseña." +msgstr "No se puede crear una instancia de clase %s ." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6506,7 +6407,7 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "No existe tal perfil (%1$d) para notificar (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." msgstr "Error de la BD al insertar la etiqueta clave: %s" @@ -6538,24 +6439,20 @@ msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "No puedes repetir tus propios mensajes" +msgstr "No se puede repetir; aviso original está perdido o eliminado." #. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy msgid "You cannot repeat your own notice." -msgstr "No puedes repetir tus propios mensajes." +msgstr "No puedes repetir tus propios mensajes" #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "No puedes repetir tus propios mensajes" +msgstr "No se puede repetir un anuncio privado." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "No puedes repetir tus propios mensajes" +msgstr "No se puede repetir un anuncio que no puede leer." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6563,9 +6460,9 @@ msgstr "Ya has repetido este mensaje." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "El/La usuario/a no tiene ningún último mensaje" +msgstr "%1$s no tiene acceso al mensaje %2$d ." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6573,9 +6470,8 @@ msgid "Problem saving notice." msgstr "Hubo un problema al guardar el mensaje." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#, fuzzy msgid "Bad type provided to saveKnownGroups." -msgstr "Mal tipo proveído a saveKnownGroups" +msgstr "Mal tipo a saveKnownGroups." #. TRANS: Server exception thrown when an update for a group inbox fails. msgid "Problem saving group inbox." @@ -6589,7 +6485,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)" @@ -6612,29 +6508,24 @@ msgid "The tag you are trying to rename to already exists." msgstr "La etiqueta que está tratando de renombrar ya existe." #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "Grupo no especificado." +msgstr "No se ha especificado una etiqueta." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "Grupo no especificado." +msgstr "No se ha especificado una etiqueta." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "No se pudo guardar el perfil." +msgstr "No se pudo crear la etiqueta de perfil." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "No se pudo guardar el perfil." +msgstr "No se pudo establecer la etiqueta de perfil URI." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "No se pudo guardar el perfil." +msgstr "No se pudo establecer la etiqueta de perfil principal." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6642,6 +6533,8 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Ya ha creado %d o más etiquetas que el máximo permitido de etiquetas. " +"Intente utilizar o eliminar algunas etiquetas existentes." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format @@ -6649,16 +6542,16 @@ msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number.Try unlisting others first." msgstr "" +"Ya tienes %1$d o más personas en lista de %2$s , que es el máximo " +"permitido. Pruebe a eliminar algunos primero." #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "No se pudo eliminar la suscripción." +msgstr "Error al agregar la lista de suscripción." #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "No se pudo eliminar la suscripción." +msgstr "No se pudo quitar la suscripción de la lista." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -6681,9 +6574,8 @@ msgid "User has blocked you." msgstr "El usuario te ha bloqueado." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. -#, fuzzy msgid "Not subscribed!" -msgstr "¡No estás suscrito!" +msgstr "¡No suscrito!" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. msgid "Could not delete self-subscription." @@ -6694,16 +6586,15 @@ msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" -msgstr "Permitir" +msgstr "Seguir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s ahora está escuchando tus avisos en %2$s" +msgstr "%1$s ahora sigue a %2$s ." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -6713,7 +6604,7 @@ msgstr "Bienvenido a %1$s, @%2$s!" #. TRANS: Exception thrown when trying view "repeated to me". msgid "Not implemented since inbox change." -msgstr "" +msgstr "No implementado desde el cambio en la bandeja de entrada." #. TRANS: Server exception. msgid "No single user defined for single-user mode." @@ -6721,7 +6612,7 @@ msgstr "Ningún usuario sólo definido para modo monousuario." #. TRANS: Server exception. msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Modo de único cuando no esta activado." #. TRANS: Information on password recovery form if no known username or e-mail address was specified. msgid "No user with that email address or username." @@ -6753,21 +6644,21 @@ msgstr "No se ha podido guardar la información del grupo local." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. -#, fuzzy, php-format +#, php-format msgid "Cannot locate account %s." -msgstr "No puedes borrar usuarios." +msgstr "No puede encontrar la cuenta %s ." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. #, php-format msgid "Cannot find XRD for %s." -msgstr "" +msgstr "No se puede encontrar XRD para %s ." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. #, php-format msgid "No AtomPub API service for %s." -msgstr "" +msgstr "Ningún servicio de AtomPub API para %s ." #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. @@ -6779,23 +6670,19 @@ msgid "User deletion in progress..." msgstr "Eliminación de usuario en curso..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Editar configuración del perfil" +msgstr "Editar configuración del perfil." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Enviar un mensaje directo a este usuario" +msgstr "Enviar un mensaje directo a este usuario." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Mensaje" @@ -6840,10 +6727,9 @@ msgstr "Responder" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "Escribe una respuesta..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Estado" @@ -6923,34 +6809,31 @@ msgstr "" "XML entero." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Idioma desconocido \"%s\"." +msgstr "Verbo desconocido: \" %s \"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." -msgstr "" +msgstr "No se puede forzar suscripción para usuario sin confianza." #. TRANS: Client exception thrown when trying to force a remote user to subscribe. -#, fuzzy msgid "Cannot force remote user to subscribe." -msgstr "Especificar el nombre del usuario al cual se quiere suscribir." +msgstr "No puede obligar a un usuario remoto para suscribirse." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#, fuzzy msgid "Unknown profile." -msgstr "Tipo de archivo desconocido" +msgstr "Perfil desconocido." #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." -msgstr "" +msgstr "Esta actividad parece no relacionada con nuestro usuario." #. TRANS: Client exception thrown when trying to join a remote group that is not a group. msgid "Remote profile is not a group!" -msgstr "" +msgstr "Perfil remoto no es de un grupo!" #. 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 "Ya eres miembro de ese grupo" @@ -6958,22 +6841,22 @@ msgstr "Ya eres miembro de ese grupo" #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. #, php-format msgid "Already know about notice %1$s and it has a different author %2$s." -msgstr "" +msgstr "Ya saben sobre noticia %1$s y tiene un autor diferente %2$s ." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. msgid "Not overwriting author info for non-trusted user." -msgstr "" +msgstr "No sobrescribir información de autor a usuarios sin confianza." #. 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 en el contenido de mensajes" +msgstr "Ningún contenido de notificación %s ." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Este usuario no existe %s" +msgstr "Ningún 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. @@ -7015,16 +6898,14 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() no implementada." #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Página de inicio" +msgstr "Inicio" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" -msgstr "Admin" +msgstr "Administración" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -7040,7 +6921,6 @@ msgid "User configuration" msgstr "Configuración de usuario" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Usuario" @@ -7050,7 +6930,6 @@ msgid "Access configuration" msgstr "Configuración de acceso" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Acceder" @@ -7060,7 +6939,6 @@ msgid "Paths configuration" msgstr "Configuración de rutas" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Rutas" @@ -7070,7 +6948,6 @@ msgid "Sessions configuration" msgstr "Configuración de sesiones" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sesiones" @@ -7080,7 +6957,6 @@ msgid "Edit site notice" msgstr "Editar el mensaje del sitio" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Mensaje de sitio" @@ -7090,17 +6966,15 @@ msgid "Snapshots configuration" msgstr "Configuración de instantáneas" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Capturas" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "Definir licencia de sitio" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licencia" @@ -7110,10 +6984,9 @@ msgid "Plugins configuration" msgstr "Configuración de plugins" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" -msgstr "Complementos" +msgstr "Plugins" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." @@ -7156,7 +7029,7 @@ msgstr "Nombre" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" msgstr[0] "Describe tu aplicación en %d caracteres" @@ -7223,19 +7096,16 @@ msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Aplicaciones conectadas" +msgstr "Cancelar cambios en las aplicaciones." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Nueva aplicación" +msgstr "Guardar cambios en las aplicaciones." #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Acción desconocida" +msgstr "Aplicación desconocida" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. @@ -7259,7 +7129,7 @@ msgstr "Aprobado el %1$s - acceso \"%2$s\"." #. TRANS: %s are the first 7 characters of the access token. #, php-format msgid "Access token starting with: %s" -msgstr "" +msgstr "Comenzando con el token de acceso:%s" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" @@ -7280,23 +7150,22 @@ msgstr "Rechazar" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." -msgstr "" +msgstr "Elemento de Autor debe contener un nombre." #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. -#, fuzzy msgid "Do not use this method!" -msgstr "No eliminar este mensaje" +msgstr "No utilice este método!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "Respuestas a %1$s en %2$s!" +msgstr "Línea de tiempo para la gente en la lista %1$s por %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +msgstr "Actualizaciones de %1$s de la lista %2$s en %3$s !" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7307,9 +7176,8 @@ msgid "Tags for this attachment" msgstr "Etiquetas de este archivo adjunto" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." -msgstr "El cambio de contraseña ha fallado" +msgstr "Error al cambiar la contraseña." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. msgid "Password changing is not allowed." @@ -7329,19 +7197,17 @@ msgid "Cancel join request" msgstr "Cancelar petición de unirse" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Todas las suscripciones" +msgstr "Cancelación de solicitud de suscripción" #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados de comando" #. TRANS: Title for command results. -#, fuzzy msgid "AJAX error" -msgstr "Error de Ajax" +msgstr "Error de AJAX" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. @@ -7403,9 +7269,8 @@ msgstr "" "Avisos: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: Already favorited." -msgstr "No se pudo crear favorito." +msgstr "No se pudo crear favoritos: ya existe." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." @@ -7427,16 +7292,16 @@ msgstr "%1$s dejo el grupo %2$s." #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "Error etiquetando %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s - %2$s" -msgstr[1] "%1$s - %2$s" +msgstr[0] "%1$s fue etiquetado %2$s" +msgstr[1] "%1$sfue etiquetado %2$s" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". @@ -7453,7 +7318,7 @@ msgstr "Etiqueta inválida: \"% s\"" #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "Error etiquetando %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7461,12 +7326,12 @@ msgstr "" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Se eliminó la siguiente etiqueta de usuario %1$s : %2$s . " +msgstr[1] "Se quitaron las siguientes etiquetas de usuario %1$s : %2$s ." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#, fuzzy, php-format +#, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -7509,7 +7374,7 @@ msgstr "" #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, #. TRANS: %2$s is the number of characters sent (used for plural). -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." msgstr[0] "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" @@ -7531,13 +7396,13 @@ msgstr "Se ha repetido el mensaje de %s." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#, fuzzy, php-format +#, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr[0] "" -"Mensaje demasiado largo - el máximo es de 140 caracteres, enviaste %d." +"Mensaje demasiado largo - el máximo es de %1$d caracteres, enviaste %2$d." msgstr[1] "" -"Mensaje demasiado largo - el máximo es de 140 caracteres, enviaste %d." +"Mensaje demasiado largo - el máximo es de %1$d caracteres, enviaste %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. @@ -7652,22 +7517,19 @@ msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Resultados de comando" +msgstr "Comandos:" #. TRANS: Help message for IM/SMS command "on". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "No se puede activar notificación." +msgstr "Activar notificaciones" #. TRANS: Help message for IM/SMS command "off". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "No se puede desactivar notificación." +msgstr "Desactivar notificaciones" #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" @@ -7675,141 +7537,130 @@ msgid "show this help" msgstr "Muestra esta ayuda" #. TRANS: Help message for IM/SMS command "follow ". -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Suscribirse a este usuario" +msgstr "Suscribirse a usuario" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "Lista de grupos a los que te has agregado" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "Etiquetar usuario" +msgstr "etiqueta a un usuario" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "Etiquetar usuario" +msgstr "quitar etiqueta a un usuario" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "lista de las personas que sigues" #. TRANS: Help message for IM/SMS command "subscribers". msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "lista de las personas que te siguen" #. TRANS: Help message for IM/SMS command "leave ". -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" msgstr "Desuscribirse de este usuario" #. TRANS: Help message for IM/SMS command "d ". -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Mensajes directos a %s" +msgstr "mensaje directo al usuario" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "obtener el último aviso de usuario" #. TRANS: Help message for IM/SMS command "whois ". -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Información del perfil" +msgstr "obtener información del perfil de usuario" #. TRANS: Help message for IM/SMS command "lose ". msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "Forzar a un usuario a que pare de seguirte" #. TRANS: Help message for IM/SMS command "fav ". msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" -msgstr "" +msgstr "Añadir la última noticia del usuario como favorito" #. TRANS: Help message for IM/SMS command "fav #". msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" -msgstr "" +msgstr "Añadir mensaje como favorito" #. TRANS: Help message for IM/SMS command "repeat #". msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "Repetir mensaje con la id dada" #. TRANS: Help message for IM/SMS command "repeat ". -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Repetir este mensaje." +msgstr "repetir el último mensaje del usuario" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "reponder al mensaje con la id dada" #. TRANS: Help message for IM/SMS command "reply ". -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Responder a este mensaje." +msgstr "repetir el último mensaje del usuario" #. TRANS: Help message for IM/SMS command "join ". -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Desconocido" +msgstr "Agregar al grupo" #. TRANS: Help message for IM/SMS command "login". msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" -msgstr "" +msgstr "Obtener un enlace para acceder a la interfaz web" #. TRANS: Help message for IM/SMS command "drop ". -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Borrar grupo" +msgstr "dejar el grupo" #. TRANS: Help message for IM/SMS command "stats". -#, fuzzy msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "Actualiza tu estado." +msgstr "obtener sus estadísticas" #. TRANS: Help message for IM/SMS command "stop". #. TRANS: Help message for IM/SMS command "quit". msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "igual que 'apagar'" #. TRANS: Help message for IM/SMS command "sub ". msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "igual que 'seguir'" #. TRANS: Help message for IM/SMS command "unsub ". msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "igual que 'abandonar'" #. TRANS: Help message for IM/SMS command "last ". msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "igual que 'coger'" #. TRANS: Help message for IM/SMS command "on ". #. TRANS: Help message for IM/SMS command "off ". @@ -7820,26 +7671,24 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all". #. TRANS: Help message for IM/SMS command "tracks". #. TRANS: Help message for IM/SMS command "tracking". -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Todavía no se implementa comando." +msgstr "aún no se ha implementado." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "recordar a un usuario para actualizar." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#, fuzzy msgid "No configuration file found." -msgstr "Ningún archivo de configuración encontrado. " +msgstr "No se encuentra en el archivo de configuración." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). -#, fuzzy msgid "I looked for configuration files in the following places:" -msgstr "He buscado archivos de configuración en los siguientes lugares: " +msgstr "" +"Me puse a buscar los archivos de configuración en los siguientes lugares:" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "You may wish to run the installer to fix this." @@ -7861,17 +7710,15 @@ msgstr "Error de la base de datos" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Público" #. TRANS: 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. @@ -7883,39 +7730,35 @@ msgid "Delete this user" msgstr "Borrar este usuario" #. TRANS: Exception. %s is an ID. -#, fuzzy, php-format +#, php-format msgid "Unable to find services for %s." -msgstr "No se puede revocar el acceso para la aplicación: %s." +msgstr "No se ha podido encontrar servicios para %s ." #. TRANS: Form legend for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Excluir este mensaje de mis favoritos" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" -msgstr "Sacar favorito" +msgstr "Eliminar favorito." #. TRANS: Button title for removing the favourite status for a favourite notice. -#, fuzzy msgid "Remove this notice from your list of favorite notices." -msgstr "No se pudo recibir avisos favoritos." +msgstr "Eliminar este mensaje de la lista de mensajes Favoritos." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Incluir este mensaje en tus favoritos" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" -msgstr "Aceptar" +msgstr "Favorito" #. TRANS: Button title for adding the favourite status to a notice. -#, fuzzy msgid "Add this notice to your list of favorite notices." -msgstr "No se pudo recibir avisos favoritos." +msgstr "Añadir este mensaje a tu lista de mensajes Favoritos." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7935,33 +7778,31 @@ msgstr "Amistad de amistad" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "Flujos de actividad" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." -msgstr "" +msgstr "Ningún autor en la fuente." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. msgid "Cannot import without a user." -msgstr "" +msgstr "No se puede importar sin un usuario." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" -msgstr "Todo" +msgstr "Todos" #. TRANS: Dropdown field label on gallery action page for a list containing tags. 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 "Elegir una etiqueta para reducir la lista" @@ -7987,7 +7828,6 @@ msgid "Blocked" msgstr "Bloqueado" #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Administradores" @@ -8003,30 +7843,26 @@ msgid "Block this user so that they can no longer post messages to it." msgstr "Bloquear a este usuario de modo que ya no pueden enviar mensajes." #. TRANS: Field title on group edit form. -#, fuzzy msgid "URL of the homepage or blog of the group or topic." -msgstr "URL de página de inicio o blog del grupo o tema" +msgstr "URL de la página o el blog del grupo o tema." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Describir al grupo o tema" +msgstr "Describir el grupo o tema." #. 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] "Describir al grupo o tema en %d caracteres" -msgstr[1] "Describir al grupo o tema en %d caracteres" +msgstr[0] "Describir el grupo o el tema en %d caracteres o menos. " +msgstr[1] "Describir el grupo o el tema en %d caracteres o menos." #. TRANS: Field title on group edit form. -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" -"Ubicación del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País" -"\"" +"Ubicación del grupo, si alguno, como \"ciudad, Estado o región, país\"." #. TRANS: Field label on group edit form. msgid "Aliases" @@ -8034,7 +7870,7 @@ msgstr "Alias" #. TRANS: Input field title for group aliases. #. TRANS: %d is the maximum number of group aliases available. -#, fuzzy, php-format +#, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "alias allowed." @@ -8042,20 +7878,23 @@ msgid_plural "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "aliases allowed." msgstr[0] "" -"Nombres adicionales para el grupo, separados por comas o espacios. Máximo: %d" +"Extra nicknames for the group, separated with commas or spaces. Maximum %d " +"alias allowed." msgstr[1] "" -"Nombres adicionales para el grupo, separados por comas o espacios. Máximo: %d" +"Extra nicknames for the group, separated with commas or spaces. Maximum %d " +"aliases allowed." #. TRANS: Checkbox field title on group edit form to mark a group private. msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"Nuevos miembros deben ser aprobados por el administrador y todos los " +"mensajes serán obligados a ser privados." #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" -msgstr "Admin" +msgstr "Administrador" #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" @@ -8081,29 +7920,26 @@ msgid "Logo" msgstr "Logo" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Mensajes populares" +msgstr "Grupos populares" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Todos los grupos" +msgstr "Grupos activos" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. -#, fuzzy msgid "See all" -msgstr "Ver más" +msgstr "Ver todos" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." -msgstr "" +msgstr "Ver todos los grupos que pertenece." #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Volver al principio" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8137,25 +7973,25 @@ msgid "Unknown file type" msgstr "Tipo de archivo desconocido" #. 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, @@ -8168,6 +8004,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" +"Usuario \" %1$s \" en %2$s ha dicho que su %3$s nombre de usuario le " +"pertenece. Si eso es cierto, puede confirmar haciendo clic en esta URL: %4" +"$s . (Si se puede pulsar en él, copiar y pegar en la barra de direcciones " +"del navegador). Si el usuario no es usted, o si no pides esta confirmación, " +"simplemente ignore este mensaje." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -8177,11 +8018,11 @@ msgstr "Origen de bandeja de entrada %d desconocido." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." -msgstr "" +msgstr "Cola debe estar habilitado para usar plugins IM." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "Transporte no puede ser nulo." #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" @@ -8189,24 +8030,21 @@ msgid "Trends" msgstr "Tendencias" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Invitar nuevos usuarios:" +msgstr "Invitar a más amigos" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Invitar nuevos usuarios:" +msgstr "Invitar a amigos" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" msgstr "Direcciones de correo electrónico" #. TRANS: Field title for a list of e-mail addresses. -#, fuzzy msgid "Addresses of friends to invite (one per line)." -msgstr "Direcciones de los amigos a invitar (una por línea)" +msgstr "Direcciones de amigos invitar (uno por línea)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -8223,26 +8061,22 @@ msgid "Send" msgstr "Enviar" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invitaciones" +msgstr "Enviar invitaciones." #. TRANS: Button text for joining a group. -#, fuzzy msgctxt "BUTTON" msgid "Join" msgstr "Unirse" #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Abandonar" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Aplicaciones que has registrado" +msgstr "Ver todas las listas que ha creado." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8303,15 +8137,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 ahora está escuchando tus avisos en %2$s" +msgstr "%1$s le sigue ahora %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 ahora está escuchando tus avisos en %2$s" +msgstr "%1$s le gustaría ver tus mensajes en %2$s ." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. @@ -8320,11 +8154,13 @@ msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" +"%1$s le gustaría ver tus mensajes en %2$s . Puede aprobar o rechazar su " +"suscripción en %3$s" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -8332,24 +8168,17 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"%1$s ahora está escuchando tus avisos en %2$s.\n" -"\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"\n" -"Atentamente,\n" -"\n" -"%7$s.\n" +"Fielmente suyo/a,\n" +"%1$s.\n" "\n" "----\n" -"Cambia tu correo electrónico o las opciones de notificación en %7$s\n" +"Cambia tu correo electrónico o las opciones de notificación en %2$s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Perfil" +msgstr "Perfil:%s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -8359,7 +8188,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." @@ -8377,7 +8206,7 @@ msgstr "Nueva dirección de correo para postear a %s" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. 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" @@ -8385,14 +8214,11 @@ msgid "" "\n" "More email instructions at %3$s." msgstr "" -"You have a new posting address on %1$s.\n" +"Tiene un nuevo correo en %1$s.\n" "\n" "Enviar correo a %2$s para publicar nuevos mensajes. \n" "\n" -"Más instrucciones de correo en %3$s.\n" -"\n" -"Attentamente, \n" -"%4$s" +"Más instrucciones de correo en %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -8419,7 +8245,7 @@ msgstr "%s te ha dado un toque" #. 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" @@ -8433,14 +8259,11 @@ msgstr "" "%1$s (%2$s) se pregunta que será de tí durante estos días y te invita a " "publicar algunas noticias.\n" "\n" -"Así que, ¡vamos! queremos escuchar de tí:)\n" +"Así que, ¡vamos! queremos escuchar de tí :)\n" "\n" "%3$s\n" "\n" -"No respondas a este correo electrónico. No llegará a ninguna parte.\n" -"\n" -"Un cordial saludo,\n" -"%4$s\n" +"No respondas a este correo electrónico. No llegará a ninguna parte." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -8451,7 +8274,7 @@ msgstr "Nuevo mensaje privado de %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -8475,10 +8298,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"No respondas a este correo electrónico. No llegará a ningún sitio.\n" -"\n" -"Saludos cordiales,\n" -"%5$s" +"No respondas a este correo electrónico. No llegará a ningún sitio." #. 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. @@ -8491,7 +8311,7 @@ msgstr "%1$s (@%2$s) agregó tu mensaje como favorito." #. 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" @@ -8519,10 +8339,7 @@ msgstr "" "\n" "Puedes ver el listado de los favoritos de %1$s aquí:\n" "\n" -"%5$s\n" -"\n" -"Saludos,\n" -"%6$s\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8546,7 +8363,7 @@ msgstr "%1$s (@%2$s) ha enviado un aviso para tu atención" #. 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" @@ -8566,7 +8383,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) ha enviado un aviso a tu atención (una '@-respuesta') en %2$s.\n" +"%1$s ha enviado un aviso a tu atención (una '@-respuesta') en %2$s.\n" "\n" "El anuncio está aquí:\n" "\n" @@ -8576,39 +8393,33 @@ msgstr "" "\n" "%4$s\n" "\n" -"%5$sPuedes responder aquí:\n" +"%5$s Puedes responder aquí:\n" "\n" "%6$s\n" "\n" "Aquí encontrarás un listado de todas las @-respuestas dirigidas a ti:\n" "\n" -"%7$s\n" -"\n" -"Saludos,\n" -"%2$s\n" -"\n" -"P.D. Puedes desactivar las notificaciones que recibes en tu correo " -"electrónico aquí: %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. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s se unió al grupo %2$s." +msgstr "%1$s se unió al grupo %2$s en %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. #. 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 se unió al grupo %2$s." +msgstr "%1$s se unió al grupo %2$s en %3$s" #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s se unió al grupo %2$s." +msgstr "%1$s quiere unirse a su grupo %2$s en %3$s ." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8618,6 +8429,8 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"%1$s le gustaría unirse a su grupo %2$s en %3$s . Puede aprobar o " +"rechazar su pertenencia a %4$s" #. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." @@ -8633,24 +8446,20 @@ msgstr "" "mensajes que sólo puedas leer tú." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" -msgstr "Bandeja de Entrada" +msgstr "Bandeja de entrada" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." msgstr "Mensajes entrantes" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Bandeja de Salida" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." msgstr "Mensajes enviados" @@ -8672,7 +8481,7 @@ msgstr "Lo sentimos, pero no se permite correos entrantes" #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." msgstr "Tipo de mensaje no compatible: %s" @@ -8686,7 +8495,6 @@ msgid "Make Admin" msgstr "Convertir en administrador" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." msgstr "Convertir a este usuario en administrador" @@ -8735,9 +8543,8 @@ msgstr "Enviar un mensaje directo" #. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. #. TRANS: This is the default entry in the drop-down box, doubling as instructions #. TRANS: and a brake against accidental submissions with the first user in the list. -#, fuzzy msgid "Select recipient:" -msgstr "Seleccione un operador móvil" +msgstr "Seleccione a destinatario:" #. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." @@ -8762,10 +8569,9 @@ msgid "from" msgstr "desde" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" -msgstr "red" +msgstr "Web" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" @@ -8773,7 +8579,6 @@ msgid "xmpp" msgstr "xmpp" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" msgstr "Correo electrónico" @@ -8781,34 +8586,32 @@ msgstr "Correo electrónico" #. 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." -msgstr "" +msgstr "No se puede obtener el autor para la actividad." #. TRANS: Client exception thrown when ... -#, fuzzy msgid "Bookmark not posted to this group." -msgstr "No puede eliminar este grupo." +msgstr "Marcador no publicado a este grupo." #. TRANS: Client exception when ... -#, fuzzy msgid "Object not posted to this user." -msgstr "No eliminar este usuario" +msgstr "Objeto no registrado para este usuario." #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. msgid "Do not know how to handle this kind of target." -msgstr "" +msgstr "No sé cómo manejar este tipo de destino." #. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. msgid "You must implement either adaptNoticeListItem() or showNotice()." -msgstr "" +msgstr "Se debe implementar ya sea adaptNoticeListItem() o showNotice()." #. TRANS: Link description to show more items in a list. msgid "More ▼" @@ -8822,8 +8625,8 @@ msgstr "El campo del nombre de usuario no puede estar vacío." #, php-format msgid "Nickname cannot be more than %d character long." msgid_plural "Nickname cannot be more than %d characters long." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Apodo no puede ser más largo de %d caracteres. " +msgstr[1] "Apodo no puede ser más largo de %d caracteres." #. TRANS: Form legend for notice form. msgid "Send a notice" @@ -8900,12 +8703,10 @@ msgstr "en contexto" msgid "Repeated by" msgstr "Repetido por" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." msgstr "Responder a este mensaje." @@ -8914,12 +8715,10 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Eliminar este mensaje" +msgstr "Eliminar este mensaje desde la línea de tiempo." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." msgstr "Mensaje repetido" @@ -8932,210 +8731,187 @@ msgid "Nudge this user" msgstr "Dar un toque a este usuario" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" -msgstr "Dar un toque a " +msgstr "Dar un toque a" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." msgstr "Dar un toque a este usuario" #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. -#, fuzzy msgid "No oEmbed API endpoint available." -msgstr "La mensajería instantánea no está disponible." +msgstr "Ningún extremo oEmbed API disponible." #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "Vínculos" +msgstr "Lista" #. TRANS: Field title for list. -#, fuzzy msgid "Change the list (letters, numbers, -, ., and _ are allowed)." -msgstr "" -"Etiquetas para este usuario (letras, números, -, ., y _), separadas por " -"comas o espacios" +msgstr "Cambiar la lista (letras, números,-,., y _ están permitidos)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Describir al grupo o tema" +msgstr "Describir la lista o tema." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Describir al grupo o tema en %d caracteres" -msgstr[1] "Describir al grupo o tema en %d caracteres" +msgstr[0] "Describir la lista o tema en %d caracteres. " +msgstr[1] "Describir la lista o tema en %d caracteres." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Borrar este usuario" +msgstr "Eliminar esta lista." #. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "Agregar o quitar usuarios" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Buscar" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Vínculos" +msgstr "Lista" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s - %2$s" +msgstr "%1$s lista de %2$s ." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Licencia" +msgstr "Listado" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Suscriptores" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Suscrito a %s." +msgstr "Suscriptores de %1$s lista de %2$s ." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Editar" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Editar grupo %s" +msgstr "Editar %s lista por usted." #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Editar configuración del perfil" +msgstr "Editar configuración de la lista." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Editar" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Privado" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Suscripciones" +msgstr "Lista de suscripciones" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Suscrito a %s." +msgstr "Listas suscritas por %s" #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Actualizaciones con \"%s\"" +msgstr "Listas con %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Actualizaciones con \"%s\"" +msgstr "Listas con %s" #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Listas de %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s - %2$s" +msgstr "Listas de %s" #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "Mensajes populares" +msgstr "Sus listas" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "No es una etiqueta válida para personas: %s." +msgstr "Editar listas" #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "Etiquetas" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Mensajes populares" +msgstr "Listas populares" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s suscriptores, página %2$d" +msgstr "La lista: %1$d suscriptores: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "Método de API no encontrado." +msgstr "Listas de usted" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Actualizaciones con \"%s\"" +msgstr "Listas con %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Suscripciones %s" +msgstr "Lista de suscripciones" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Perfil" @@ -9145,25 +8921,21 @@ msgid "Your profile" msgstr "Perfil del grupo" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Respuestas" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favoritos" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Usuario" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "Mensajes" @@ -9195,15 +8967,13 @@ msgstr "" "desactivado.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Configuración de SMS" +msgstr "Ajustes" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Cambia tus opciones de perfil" +msgstr "Cambiar la configuración personal." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9211,9 +8981,8 @@ msgid "Admin" msgstr "Admin" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "Configuración de usuario" +msgstr "Configuración del sitio." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9221,24 +8990,20 @@ msgid "Logout" msgstr "Cerrar sesión" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Cerrar sesión en el sitio" +msgstr "Cerrar sesión en el sitio." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." msgstr "Iniciar sesión en el sitio" #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Permitir" +msgstr "Siguiendo" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Permitir" +msgstr "Seguidores" #. TRANS: H2 text for user statistics. msgid "Statistics" @@ -9262,9 +9027,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." @@ -9275,7 +9039,6 @@ msgid "User groups" msgstr "Grupos de usuario" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetas recientes" @@ -9285,13 +9048,11 @@ msgid "Recent tags" msgstr "Etiquetas recientes" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" -msgstr "Destacado" +msgstr "Destacados" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -9299,7 +9060,7 @@ msgstr "Popular" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "Temas de tendencias" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9310,7 +9071,6 @@ msgid "Repeat this notice?" msgstr "Repetir este mensaje?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." msgstr "Repetir este mensaje." @@ -9320,15 +9080,13 @@ msgid "Revoke the \"%s\" role from this user" msgstr "Revocar el rol \"%s\" de este usuario" #. TRANS: Client error on action trying to visit a non-existing page. -#, fuzzy msgid "Page not found." -msgstr "Método de API no encontrado." +msgstr "Página no encontrada." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" -msgstr "Restringir" +msgstr "Zona de pruebas" #. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" @@ -9357,6 +9115,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Asegúrese de que todas las palabras estén escritas correctamente.\n" +"* Pruebe con palabras clave diferentes.\n" +"* Pruebe con palabras clave más generales.\n" +"* Pruebe con menos palabras clave." #. TRANS: Standard search suggestions shown when a search does not give any results. #, php-format @@ -9379,17 +9141,15 @@ msgstr "" "com/ q = %s )" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" -msgstr "Gente" +msgstr "Personas" #. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Encontrar gente en este sitio" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Mensajes" @@ -9403,25 +9163,21 @@ msgid "Find groups on this site" msgstr "Encontrar grupos en este sitio" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Privacidad" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Fuente" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Versión" @@ -9435,17 +9191,15 @@ msgid "More..." msgstr "Más..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "Configuración de SMS" +msgstr "Ajustes" #. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Imagen" @@ -9455,7 +9209,6 @@ msgid "Upload an avatar" msgstr "Subir una imagen." #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Contraseña" @@ -9465,7 +9218,6 @@ msgid "Change your password" msgstr "Cambia tu contraseña" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "Correo electrónico" @@ -9484,7 +9236,6 @@ msgid "URL shorteners" msgstr "Acortadores de URL" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -9494,7 +9245,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -9504,10 +9254,9 @@ msgid "Updates by SMS" msgstr "Actualizaciones por sms" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "Conecciones" +msgstr "Conexiones" #. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" @@ -9516,14 +9265,13 @@ msgstr "Aplicaciones conectadas autorizadas" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Vieja escuela" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Ajustes de interfaz de usuario para los usuarios de la vieja escuela" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" @@ -9537,28 +9285,27 @@ msgid "Could not create anonymous consumer." msgstr "No fue posible crear usuario anónimo." #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#, fuzzy msgid "Could not create anonymous OAuth application." -msgstr "No se pudo crear la aplicación." +msgstr "No se pudo crear la aplicación de OAuth anónimo." #. TRANS: Exception thrown when no token association could be found. msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"No se pudo encontrar un perfil y una aplicación asociada con el token de " +"petición." #. TRANS: Exception thrown when no access token can be issued. -#, fuzzy msgid "Could not issue access token." -msgstr "No se pudo insertar mensaje." +msgstr "No se podría emitir el token de acceso." #. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." #. TRANS: Exception thrown when a database error occurs. -#, fuzzy msgid "Database error updating OAuth application user." -msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." +msgstr "Error de base de datos al actualizar usuario de aplicaciones OAuth." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. msgid "Tried to revoke unknown token." @@ -9569,20 +9316,19 @@ msgid "Failed to delete revoked token." msgstr "No se pudo eliminar el token revocado." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Suscripciones" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." msgstr "Personas a las que %s está suscrito" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." msgstr "Personas suscritas a %s" @@ -9600,15 +9346,15 @@ msgstr "Aprobar solicitudes pendientes de suscripción." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." msgstr "%s es miembro de los grupos" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Personas suscritas a %s" +msgstr "Lista de suscripciones de %s ." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -9617,9 +9363,9 @@ msgstr "Invitar" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Invita a amigos y colegas a unirse a %s" +msgstr "Invitar a amigos y colegas a unirse con usted en %s ." #. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" @@ -9627,7 +9373,6 @@ msgstr "Suscribirse a este usuario" #. TRANS: Button text to subscribe to a user. #. TRANS: Button text for subscribing to a list. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "Suscribirse" @@ -9645,15 +9390,13 @@ msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas de personas etiquetadas" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" msgstr "Ninguno" #. TRANS: Server exception displayed if a theme name was invalid. -#, fuzzy msgid "Invalid theme name." -msgstr "Nombre de archivo inválido." +msgstr "Nombre del tema no válido." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." @@ -9669,23 +9412,23 @@ msgid "Failed saving theme." msgstr "Grabado de tema errado." #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. -#, fuzzy msgid "Invalid theme: Bad directory structure." -msgstr "Tema inválido: mala estructura de directorio." +msgstr "Tema no válido: estructura de directorio incorrecto." #. TRANS: Client exception thrown when an uploaded theme is larger than the limit. #. TRANS: %d is the number of bytes of the uncompressed theme. -#, fuzzy, php-format +#, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -"Tema subido es demasiado grande; debe ser menor que %d bytes sin comprimir." +"Tema cargado es demasiado grande; debe ser inferior a %d bytes sin " +"compresión. " msgstr[1] "" -"Tema subido es demasiado grande; debe ser menor que %d bytes sin comprimir." +"Tema cargado es demasiado grande; debe ser inferior a %d bytes sin " +"compresión." #. TRANS: Server exception thrown when an uploaded theme is incomplete. -#, fuzzy msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archivo de tema inválido: archivo perdido css/display.css" @@ -9705,7 +9448,7 @@ msgstr "" #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. -#, fuzzy, php-format +#, php-format msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "El tema contiene archivo de tipo '.%s', que no está permitido." @@ -9714,18 +9457,17 @@ msgid "Error opening theme archive." msgstr "Error al abrir archivo de tema." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Mensajes" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Ver más" -msgstr[1] "Ver más" +msgstr[0] "Mostrar respuesta" +msgstr[1] "Mostrar todas %d respuestas" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" @@ -9734,16 +9476,15 @@ msgstr "Usted" #. 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 y %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You like this." -msgstr "Mensajes populares" +msgstr "Te gusta esto." #. 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. @@ -9751,8 +9492,8 @@ msgstr "Mensajes populares" #, php-format msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] " A %%s y %d les gusta esto." +msgstr[1] "A %%s y %d les gusta esto." #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. @@ -9760,14 +9501,13 @@ msgstr[1] "" #, php-format msgid "%%s likes this." msgid_plural "%%s like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "A %%s le gusta esto." +msgstr[1] "A %%s le gusta esto." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "Ya has repetido este mensaje." +msgstr "Se repite esto." #. 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. @@ -9775,58 +9515,55 @@ msgstr "Ya has repetido este mensaje." #, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%%s y %d repitió esto. " +msgstr[1] "%%s y %d repitió esto." #. 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 +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "Repetido a %s" -msgstr[1] "Repetido a %s" +msgstr[0] "%%s repitió esto. " +msgstr[1] "%%s repitió esto." #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "Buscar sitio" +msgstr "Búsqueda y lista de personas" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "Todo" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Fullname" msgstr "Nombre completo" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" -msgstr "" +msgstr "URI (los usuarios remotos)" #. TRANS: Dropdown field label. -#, fuzzy msgctxt "LABEL" msgid "Search in" -msgstr "Buscar sitio" +msgstr "Buscar en" #. TRANS: Dropdown field title. -#, fuzzy msgid "Choose a field to search." -msgstr "Elegir una etiqueta para reducir la lista" +msgstr "Seleccione un campo de búsqueda." #. 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 de 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 "Agregar %1$s a la lista %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9841,23 +9578,21 @@ msgstr "Todo el mundo" #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Mis amigos en %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "Para" +msgstr "Para:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -msgstr "Privado" +msgstr "¿Privado?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Idioma desconocido \"%s\"." +msgstr "Desconocido al valor: \" %s \"." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -9865,10 +9600,9 @@ msgid "Unblock" msgstr "Desbloquear" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" -msgstr "Eliminar restricciones" +msgstr "Eliminar zona de pruebas" #. TRANS: Description for unsandbox form. msgid "Unsandbox this user" @@ -9888,26 +9622,23 @@ msgstr "Desuscribirse de este usuario" #. TRANS: Button text on unsubscribe form. #. TRANS: Button text for unsubscribing from a list. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Cancelar suscripción" +msgstr "Cancelar la suscripción" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." msgstr "Desuscribirse de 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). -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "El usuario no tiene un perfil." +msgstr "Usuario %1$s ( %2$d ) no tiene ningún registro de perfil." #. TRANS: Authorisation exception thrown when a user a not allowed to login. -#, fuzzy msgid "Not allowed to log in." -msgstr "No conectado." +msgstr "No puede iniciar sesión." #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "a few seconds ago" @@ -9963,20 +9694,19 @@ msgstr "hace un año" #. TRANS: Web color exception thrown when a hexadecimal color code does not validate. #. TRANS: %s is the provided (invalid) color code. -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color! Use 3 or 6 hex characters." -msgstr "%s no es un color válido! Usar 3 o 6 caracteres hexagesimales" +msgstr "%s no es un color válido! Usar 3 o 6 caracteres hexadecimales." #. TRANS: Exception. -#, fuzzy msgid "Invalid XML." -msgstr "Tamaño inválido." +msgstr "XML no válido." #. TRANS: Exception. msgid "Invalid XML, missing XRD root." -msgstr "" +msgstr "XML no válido, falta de raíz XRD." #. TRANS: Commandline script output. %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "Obtener copia de seguridad del archivo ' %s '." diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 2471f4ee0e..55ead51ebb 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" @@ -4471,7 +4471,7 @@ msgstr "6 karaktere edo gehiago eta etzazu ahaztu!" #. TRANS: Button text for password reset form. msgctxt "BUTTON" msgid "Reset" -msgstr "Berrezarri" +msgstr "Hasieratu" #. TRANS: Form instructions for password recovery form. msgid "Enter a nickname or email address." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index abae8286a9..6dc0ebc643 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-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ 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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index aef27a09a5..4910ac944b 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,12 +18,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:39+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" @@ -6148,7 +6148,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profiili" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 99b0ac6dcf..6e4d6b08a7 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -24,6 +24,7 @@ # Author: Valeryan 24 # Author: Verdy p # Author: Y-M D +# Author: Zebulon84 # -- # This file is distributed under the same license as the StatusNet package. # @@ -31,12 +32,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -2060,7 +2061,7 @@ msgid "Tags" msgstr "Balises" msgid "Using tags" -msgstr "" +msgstr "Utiliser des balises" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2069,9 +2070,8 @@ msgctxt "MENU" msgid "Groups" msgstr "Groupes" -#, fuzzy msgid "Using groups" -msgstr "Groupes d’utilisateurs" +msgstr "Utiliser des groupes" msgctxt "MENU" msgid "API" @@ -2214,9 +2214,8 @@ msgid "Use this form to edit the list." msgstr "Utilisez ce formulaire pour modifier la liste." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Supprimer cet avis" +msgstr "Suppression annulée." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2725,7 +2724,7 @@ msgstr "Groupes, page %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -2738,7 +2737,7 @@ msgstr "" "groupe, vous pouvez envoyer des messages à tous les autres membres en " "utilisant la syntaxe « !nomdugroupe ». Vous ne voyez aucun groupe qui vous " "intéresse ? Essayez d’en [rechercher un](%%%%action.groupsearch%%%%) ou de " -"[créer le vôtre !](%%%%action.newgroup%%%%)" +"[créer le vôtre](%%%%action.newgroup%%%%) !" #. TRANS: Link to create a new group on the group list page. #. TRANS: Link text on group page to create a new group. @@ -3287,9 +3286,8 @@ msgid "New group" msgstr "Nouveau groupe" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Vous n’êtes pas autorisé à supprimer ce groupe." +msgstr "Vous ne sont pas autorisés à créer des groupes sur ce site" #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3302,7 +3300,6 @@ msgstr "Nouveau message" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." @@ -3975,7 +3972,6 @@ msgid "Show private tags." msgstr "Afficher les notices privées." #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Public" @@ -3987,7 +3983,6 @@ msgstr "Cette marque n’existe pas." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Aller" @@ -4913,9 +4908,8 @@ msgstr "Erreur système lors du transfert du fichier." #. TRANS: Client exception thrown when a feed is not an Atom feed. #. TRANS: Client exception thrown when an imported feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "Tous les membres" +msgstr "Pas un flux Atom." #. TRANS: Success message when a feed has been restored. msgid "" @@ -4934,16 +4928,14 @@ msgid "" msgstr "" #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "Importer un fichier" +msgstr "Téléverser le fichier" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "L'utilisateur ne possède pas ce rôle." @@ -4970,9 +4962,9 @@ msgstr "Cette marque est invalide : %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" +msgstr "Utilisateurs marqués par eux-mêmes avec %1$s, page %2$d" #. TRANS: Title for the sessions administration panel. msgctxt "TITLE" @@ -4995,9 +4987,8 @@ msgstr "Gérer les sessions" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "S’il faut gérer les sessions nous-même." +msgstr "Gérer les sessions nous-mêmes." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -5005,9 +4996,8 @@ msgid "Session debugging" msgstr "Déboguage de session" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." -msgstr "Activer la sortie de déboguage pour les sessions." +msgstr "Activer la sortie de débogage pour les sessions." #. TRANS: Title for submit button on the sessions administration panel. #, fuzzy @@ -5070,13 +5060,12 @@ msgid "Authorize URL" msgstr "Autoriser l’URL" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Note : Nous utilisons les signatures HMAC-SHA1. Nous n’utilisons pas la " -"méthode de signature en texte clair." +"Note : Les signatures HMAC-SHA1 sont supportées. La méthode de signature en " +"clair n'est pas supportée." #. 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?" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index d204cea7da..1c56e84671 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" @@ -1940,18 +1940,16 @@ msgctxt "MENU" msgid "Help" msgstr "Jutori" -#, fuzzy msgid "Getting started" -msgstr "Impuestazions salvadis." +msgstr "Par scomençâ" #. 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" +msgstr "Informazions su chest sît" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1967,9 +1965,8 @@ msgctxt "MENU" msgid "Contact" msgstr "Contats" -#, fuzzy msgid "Contact info" -msgstr "Contats" +msgstr "Informazions di contat" #, fuzzy msgctxt "MENU" @@ -1977,7 +1974,7 @@ msgid "Tags" msgstr "Etichetis" msgid "Using tags" -msgstr "" +msgstr "Ûs des etichetis" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -1986,16 +1983,15 @@ msgctxt "MENU" msgid "Groups" msgstr "Grups" -#, fuzzy msgid "Using groups" -msgstr "Grups di utents" +msgstr "Ûs dai grups" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "API RESTful" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -5220,7 +5216,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -6060,7 +6056,6 @@ 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 " @@ -6070,7 +6065,7 @@ 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 " "publicade de Free Software Foundation, sei te version 3 de Licence sei (a tô " -"discrezion) cualsisei version posteriôr. " +"discrezion) cualsisei version posteriôr." #. TRANS: Content part of StatusNet version page. msgid "" @@ -8130,9 +8125,9 @@ 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 +#, 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." +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, @@ -9206,10 +9201,9 @@ 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 repeated this." -msgstr "Tu âs ripetût chest avîs." +msgstr "Tu lu âs ripetût." #. 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. diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 3fc48ff5f8..359b052cd0 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -271,7 +271,7 @@ msgstr "Fonte de novas dos amigos de %s (Atom)" msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"Esta é a liña do tempo de %s e amigos pero ninguén publicou nada aínda." +"Esta é a liña do tempo de %s e amigos, pero ninguén publicou nada aínda." #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. @@ -857,15 +857,14 @@ msgstr "Permitir ou denegar o acceso" #. TRANS: User notification of external application requesting account access. #. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "An application would like the ability to %3$s your %4$s " "account data. You should only give access to your %4$s account to third " "parties you trust." msgstr "" -"A aplicación %1$s de %2$s quere poder " -"%3$s os datos da súa conta %4$s. Só debería permitir o " -"acceso á súa conta %4$s a xente de confianza." +"Unha aplicación quere poder %3$s os datos da súa conta %4" +"$s. Só debería permitir o acceso á súa conta %4$s a xente de confianza." #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, @@ -929,21 +928,22 @@ msgid "The request token %s has been revoked." msgstr "Denegouse o pase da solicitude %s." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#, fuzzy msgid "You have successfully authorized the application" -msgstr "Non está autorizado." +msgstr "Deu autorización á aplicación correctamente" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. msgid "" "Please return to the application and enter the following security code to " "complete the process." msgstr "" +"Volva á aplicación e insira o seguinte código de seguridade para completar o " +"proceso." #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#, fuzzy, php-format +#, php-format msgid "You have successfully authorized %s" -msgstr "Non está autorizado." +msgstr "Deu autorización a %s correctamente" #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -952,6 +952,7 @@ msgid "" "Please return to %s and enter the following security code to complete the " "process." msgstr "" +"Volva a %s e insira o seguinte código de seguridade para completar o proceso." #. TRANS: Client error displayed trying to delete a status not using POST or DELETE. #. TRANS: POST and DELETE should not be translated. @@ -976,15 +977,14 @@ msgstr "Non existe esa nota." #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client error shown when using a non-supported HTTP method. #. TRANS: Client exception thrown when using an unsupported HTTP method. -#, fuzzy msgid "HTTP method not supported." -msgstr "Non se atopou o método da API." +msgstr "Non se soporta o método HTTP." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. -#, fuzzy, php-format +#, php-format msgid "Unsupported format: %s." -msgstr "Formato non soportado." +msgstr "Formato non soportado: %s." #. TRANS: Client error displayed requesting a deleted status. msgid "Status deleted." @@ -996,7 +996,7 @@ msgstr "Non se atopou ningún estado con esa ID." #. TRANS: Client error displayed when trying to delete a notice not using the Atom format. msgid "Can only delete using the Atom format." -msgstr "" +msgstr "Unicamente se pode borrar mediante o formato Atom." #. TRANS: Client error displayed when a user has no rights to delete notices of other users. #. TRANS: Error message displayed trying to delete a notice that was not made by the current user. @@ -1024,19 +1024,18 @@ msgstr[0] "Iso é longo de máis. A nota non pode exceder os %d caracteres." msgstr[1] "Iso é longo de máis. A nota non pode exceder os %d caracteres." #. TRANS: Client error displayed when replying to a non-existing notice. -#, fuzzy msgid "Parent notice not found." -msgstr "Non se atopou o método da API." +msgstr "Non se atopou a nota pai." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum length for a notice. -#, fuzzy, php-format +#, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." msgstr[0] "" -"A lonxitude máxima das notas é de %d caracteres, incluído o URL do dato " +"A lonxitude máxima das notas é de %d carácter, incluído o URL do dato " "adxunto." msgstr[1] "" "A lonxitude máxima das notas é de %d caracteres, incluído o URL do dato " @@ -1056,15 +1055,15 @@ msgstr "%1$s / Favoritos de %2$s" #. TRANS: Subtitle for timeline of most recent favourite notices by a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, #. TRANS: %3$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s updates favorited by %2$s / %3$s." -msgstr "%1$s actualizacións marcadas como favoritas por %2$s / %2$s." +msgstr "Actualizacións de %1$s marcadas como favoritas por %2$s / %3$s." #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for list - %s" -msgstr "Non se puido crear un pase de sesión para %s" +msgstr "Non se puido crear unha fonte de novas para a lista: %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. @@ -1091,9 +1090,8 @@ msgid "%s updates from everyone!" msgstr "%s actualizacións de todos!" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. -#, fuzzy msgid "Unimplemented." -msgstr "Aínda non se implantou o método." +msgstr "Non implantado." #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. #, php-format @@ -1102,9 +1100,9 @@ msgstr "Repetiu a %s" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "%1$s actualizacións que responden a actualizacións de %2$s / %3$s." +msgstr "Notas de %1$s que foron repetidas a %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -1114,9 +1112,9 @@ msgstr "Repeticións de %s" #. TRANS: Subtitle of API time with retweets of me. #. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "%1$s marcou a nota %2$s como favorita" +msgstr "Notas de %1$s que %2$s / %3$s repetiu." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1135,21 +1133,20 @@ msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións etiquetadas con %1$s en %2$s!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. -#, fuzzy msgid "Only the user can add to their own timeline." -msgstr "Só o usuario pode ler as súas caixas de entrada." +msgstr "Só o usuario pode engadir elementos á súa liña do tempo." #. TRANS: Client error displayed when using another format than AtomPub. msgid "Only accept AtomPub for Atom feeds." -msgstr "" +msgstr "Aceptar unicamente AtomPub para as fontes de novas Atom." #. TRANS: Client error displayed attempting to post an empty API notice. msgid "Atom post must not be empty." -msgstr "" +msgstr "A mensaxe de Atom non pode estar baleira." #. TRANS: Client error displayed attempting to post an API that is not well-formed XML. msgid "Atom post must be well-formed XML." -msgstr "" +msgstr "A mensaxe de Atom debe estar en formato XML." #. TRANS: Client error displayed when not using an Atom entry. msgid "Atom post must be an Atom entry." @@ -1163,7 +1160,7 @@ msgstr "Só pode manexar actividades POST." #. TRANS: %s is the unsupported activity object type. #, php-format msgid "Cannot handle activity object type \"%s\"." -msgstr "" +msgstr "Non se pode manexar o obxecto de actividade do tipo \"%s\"." #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). @@ -1173,18 +1170,17 @@ msgstr "A nota %d non ten ningún contido." #. TRANS: Client error displayed when using another format than AtomPub. #. TRANS: %s is the notice URI. -#, fuzzy, php-format +#, php-format msgid "Notice with URI \"%s\" already exists." -msgstr "Non hai ningunha nota con esa id." +msgstr "Xa existe a nota co URI \"%s\"." #. TRANS: Server error for unfinished API method showTrends. msgid "API method under construction." msgstr "Método API en desenvolvemento." #. TRANS: Client error displayed when requesting user information for a non-existing user. -#, fuzzy msgid "User not found." -msgstr "Non se atopou o método da API." +msgstr "Non se atopou o usuario." #. TRANS: Client error displayed when trying to leave a group while not logged in. msgid "You must be logged in to leave a group." @@ -1232,140 +1228,137 @@ msgstr "Nin alcume nin ID." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Non iniciou sesión." +msgstr "Cómpre acceder ao sistema." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Soamente os administradores do grupo poden aprobar ou rexeitar solicitudes " +"de ingreso." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. -#, fuzzy msgid "Must specify a profile." -msgstr "Falta o perfil de usuario." +msgstr "Cómpre especificar un perfil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. #. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Unha lista dos usuarios pertencentes a este grupo." +msgstr "%s non está na lista de moderación deste grupo." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Erro interno: Non se recibiu orde de rexeitar nin de abortar." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "" +msgstr "Erro interno: Recibiuse orde de rexeitar e de abortar." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." +msgstr "" +"Non se puido rexeitar a solicitude do usuario %1$s de unirse ao grupo %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Estado de %1$s en %2$s" +msgstr "Solicitude de %1$s en %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "Solicitude de ingreso aprobada." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." -msgstr "" +msgstr "Solicitude de ingreso rexeitada." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "Unha lista dos usuarios pertencentes a este grupo." +msgstr "%s non está na lista de moderación das súas subscricións." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." -msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." +msgstr "" +"Non se puido rexeitar ou aprobar a solicitude do usuario %1$s de unirse ao " +"grupo %2$s." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Estado de %1$s en %2$s" +msgstr "Solicitude de %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Autorizouse a subscrición" +msgstr "Aprobouse a subscrición." #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Autorización cancelada." +msgstr "Rexeitouse a subscrición." #. TRANS: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Notices %1$s has favorited on %2$s" -msgstr "Actualizacións de %1$s e amigos en %2$s!" +msgstr "Notas que %1$s marcou como favoritas en %2$s!" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. -#, fuzzy msgid "Cannot add someone else's subscription." -msgstr "Non se puido inserir unha subscrición nova." +msgstr "Non pode engadir unha subscrición a outra persoa." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. msgid "Can only handle favorite activities." msgstr "Só pode manexar actividades de favoritos." #. TRANS: Client exception thrown when trying favorite an object that is not a notice. -#, fuzzy msgid "Can only fave notices." -msgstr "Buscar nos contidos das notas" +msgstr "Só pode engadir notas aos favoritos." #. TRANS: Client exception thrown when trying favorite a notice without content. msgid "Unknown notice." msgstr "Nota descoñecida." #. TRANS: Client exception thrown when trying favorite an already favorited notice. -#, fuzzy msgid "Already a favorite." -msgstr "Engadir aos favoritos" +msgstr "Xa está nos favoritos." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "Membros do grupo %s" +msgstr "Grupos aos que pertence %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "Grupos aos que pertence %s" +msgstr "Grupos aos que pertence %1$s en %2$s" #. TRANS: Client exception thrown when trying subscribe someone else to a group. -#, fuzzy msgid "Cannot add someone else's membership." -msgstr "Non se puido inserir unha subscrición nova." +msgstr "Non pode meter no grupo a outra persoa." #. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." -msgstr "Só pode manexar actividades de unión." +msgstr "Só pode manexar actividades de ingreso." #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. msgid "Unknown group." @@ -1384,24 +1377,22 @@ msgid "No such favorite." msgstr "Non existe tal favorito." #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. -#, fuzzy msgid "Cannot delete someone else's favorite." -msgstr "Non se puido eliminar o favorito." +msgstr "Non pode borrar o favorito doutra persoa." #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group msgid "Not a member." msgstr "Non é membro." #. TRANS: Client exception thrown when deleting someone else's membership. -#, fuzzy msgid "Cannot delete someone else's membership." -msgstr "Non se puido borrar a subscrición a si mesmo." +msgstr "Non pode quitar do grupo a outra persoa." #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. #. TRANS: %d is the non-existing profile ID number. -#, fuzzy, php-format +#, php-format msgid "No such profile id: %d." -msgstr "Non existe ese perfil." +msgstr "Non existe perfil ningún co identificador: %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. @@ -1410,15 +1401,14 @@ msgid "Profile %1$d not subscribed to profile %2$d." msgstr "O perfil %1$d non está subscrito ao perfil %2$d." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "Non se puido borrar a subscrición a si mesmo." +msgstr "Non pode borrar a subscrición doutra persoa." #. 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 "Persoas subscritas a %s" +msgstr "Persoas ás que %1$s está subscrito en %2$s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1426,13 +1416,13 @@ msgstr "Só pode manexar actividades de seguimento." #. TRANS: Client exception thrown when subscribing to an object that is not a person. msgid "Can only follow people." -msgstr "" +msgstr "Só pode seguir xente." #. TRANS: Client exception thrown when subscribing to a non-existing profile. #. TRANS: %s is the unknown profile ID. -#, fuzzy, php-format +#, php-format msgid "Unknown profile %s." -msgstr "Non se coñece o tipo de ficheiro" +msgstr "Perfil descoñecido %s." #. TRANS: Client error displayed trying to subscribe to an already subscribed profile. #. TRANS: %s is the profile the user already has a subscription on. @@ -1519,9 +1509,8 @@ msgid "No file uploaded." msgstr "Non se subiu ficheiro ningún." #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "Escolla unha zona cadrada da imaxe para usala como avatar" +msgstr "Escolla unha zona cadrada da imaxe para usala como avatar." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1543,16 +1532,17 @@ msgstr "Borrouse o avatar." #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" -msgstr "" +msgstr "Copia de seguridade da conta" #. TRANS: Client exception thrown when trying to backup an account while not logged in. -#, fuzzy msgid "Only logged-in users can backup their account." -msgstr "Só os usuarios identificados poden repetir notas." +msgstr "" +"Só os usuarios identificados poden facer unha copia de seguridade da súa " +"conta." #. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." -msgstr "Non pode facer unha copia da súa conta." +msgstr "Non pode facer unha copia de seguridade da súa conta." #. TRANS: Information displayed on the backup account page. msgid "" @@ -1562,6 +1552,12 @@ msgid "" "addresses is not backed up. Additionally, uploaded files and direct messages " "are not backed up." msgstr "" +"Pode facer unha copia de seguridade dos datos da súa conta en formato Activity Streams. Esta é unha " +"característica experimental e proporciona unha copia incompleta; a " +"información privada da conta como os enderezos de correo electrónico e " +"mensaxería instantánea non se copian. Ademais, os ficheiros cargados e as " +"mensaxes directas tampouco se gardan." #. TRANS: Submit button to backup an account on the backup account page. msgctxt "BUTTON" @@ -1570,7 +1566,7 @@ msgstr "Copia de seguridade" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." -msgstr "" +msgstr "Copia de seguridade da súa conta." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1714,14 +1710,12 @@ msgstr "Ese enderezo xa se confirmou." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Non se puido actualizar o rexistro do usuario." +msgstr "Non se puideron actualizar as preferencias de mensaxería instantánea." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Non se puido inserir unha subscrición nova." +msgstr "Non se puideron inserir as preferencias de mensaxería instantánea." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1744,15 +1738,13 @@ msgstr "Conversa" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Fonte de novas das notas para %s (Atom)" +msgstr "Fonte de novas da conversa (fluxos de actividade JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Fonte de novas das notas para %s (RSS 2.0)" +msgstr "Fonte de novas da conversa (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1761,9 +1753,8 @@ msgid "Notice" msgstr "Nota" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#, fuzzy msgid "Only logged-in users can delete their account." -msgstr "Só os usuarios identificados poden repetir notas." +msgstr "Só os usuarios identificados poden borrar a súa conta." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. msgid "You cannot delete your account." @@ -1777,7 +1768,7 @@ msgstr "Estou seguro." #. TRANS: %s is the text that needs to be input. #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "Debe escribir exactamente \"%s\" na caixa." #. TRANS: Confirmation that a user account has been deleted. msgid "Account deleted." @@ -1793,6 +1784,8 @@ msgid "" "This will permanently delete your account data from this " "server." msgstr "" +"Isto borrará permanentemente os datos da súa conta do " +"servidor." #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. @@ -1801,6 +1794,8 @@ msgid "" "You are strongly advised to back up your data before " "deletion." msgstr "" +"Recoméndase encarecidamente que faga unha copia de seguridade " +"dos datos antes da eliminación." #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. @@ -1809,14 +1804,13 @@ msgstr "Confirmar" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Non pode borrar usuarios." +msgstr "Insira \"%s\" para confirmar que quere borrar a conta." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Non pode borrar usuarios." +msgstr "Borrar permanentemente a conta." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1853,36 +1847,32 @@ msgstr "" "usuario existentes." #. TRANS: Submit button title for 'No' when deleting an application. -#, fuzzy msgid "Do not delete this application." -msgstr "Non borrar a aplicación" +msgstr "Non borrar a aplicación." #. TRANS: Submit button title for 'Yes' when deleting an application. -#, fuzzy msgid "Delete this application." -msgstr "Borrar a aplicación" +msgstr "Borrar a aplicación." #. TRANS: Client error when trying to delete group while not logged in. -#, fuzzy msgid "You must be logged in to delete a group." -msgstr "Ten que identificarse para deixar un grupo." +msgstr "Ten que identificarse para borrar un grupo." #. TRANS: Client error when trying to delete a group without having the rights to delete it. -#, fuzzy msgid "You are not allowed to delete this group." -msgstr "Vostede non pertence a este grupo." +msgstr "Non lle está permitido borrar este grupo." #. TRANS: Server error displayed if a group could not be deleted. #. TRANS: %s is the name of the group that could not be deleted. -#, fuzzy, php-format +#, php-format msgid "Could not delete group %s." -msgstr "Non se puido actualizar o grupo." +msgstr "Non se puido borrar o grupo %s." #. TRANS: Message given after deleting a group. #. TRANS: %s is the deleted group's name. -#, fuzzy, php-format +#, php-format msgid "Deleted group %s" -msgstr "%1$s deixou o grupo %2$s" +msgstr "Borrouse o grupo %s" #. TRANS: Title of delete group page. #. TRANS: Form legend for deleting a group. @@ -1890,23 +1880,22 @@ msgid "Delete group" msgstr "Borrar un grupo" #. TRANS: Warning in form for deleleting a group. -#, fuzzy msgid "" "Are you sure you want to delete this group? This will clear all data about " "the group from the database, without a backup. Public posts to this group " "will still appear in individual timelines." msgstr "" -"Está seguro de querer borrar este usuario? Isto borrará todos os datos do " -"usuario da base de datos, sen posibilidade de recuperalos." +"Está seguro de querer borrar este grupo? Isto borrará todos os datos do " +"grupo da base de datos, sen posibilidade de recuperalos. As mensaxes " +"públicas deste grupo seguirán aparecendo nas liñas do tempo individuais." #. TRANS: Submit button title for 'No' when deleting a group. msgid "Do not delete this group." msgstr "Non borrar este grupo." #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Borrar o usuario" +msgstr "Borrar o grupo." #. TRANS: Instructions for deleting a notice. msgid "" @@ -1942,7 +1931,6 @@ msgid "You can only delete local users." msgstr "Só pode borrar usuarios locais." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "Borrar o usuario" @@ -1977,9 +1965,9 @@ msgstr "Engadir aos favoritos" #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. #. TRANS: %s is the non-existing document. -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"." -msgstr "Non hai ningún documento \"%s\"" +msgstr "Non hai ningún documento \"%s\"." #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in default local navigation panel. @@ -1997,18 +1985,16 @@ msgctxt "MENU" msgid "Help" msgstr "Axuda" -#, fuzzy msgid "Getting started" -msgstr "Gardouse a configuración." +msgstr "Primeiros pasos" #. 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" +msgstr "Acerca deste sitio" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2024,17 +2010,15 @@ msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#, fuzzy msgid "Contact info" -msgstr "Contacto" +msgstr "Información de contacto" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etiquetas" msgid "Using tags" -msgstr "" +msgstr "Uso de etiquetas" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2043,9 +2027,8 @@ msgctxt "MENU" msgid "Groups" msgstr "Grupos" -#, fuzzy msgid "Using groups" -msgstr "Grupos do usuario" +msgstr "Uso de grupos" msgctxt "MENU" msgid "API" @@ -2079,7 +2062,6 @@ msgstr "Fai falla un nome." #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. #. TRANS: Validation error shown when providing too long a name in the "New application" form. -#, fuzzy msgid "Name is too long (maximum 255 characters)." msgstr "O nome é longo de máis (o límite é de 255 caracteres)." @@ -2108,7 +2090,6 @@ msgid "Organization is required." msgstr "Fai falla unha organización." #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#, fuzzy msgid "Organization is too long (maximum 255 characters)." msgstr "A organización é longa de máis (o límite é de 255 caracteres)." @@ -2140,7 +2121,7 @@ msgstr "Editar o grupo %s" #. TRANS: Client error displayed when trying to create a group while not logged in. #. TRANS: Client error displayed trying to create a group while not logged in. msgid "You must be logged in to create a group." -msgstr "Ten que iniciar sesión para crear un grupo." +msgstr "Ten que identificarse para crear un grupo." #. TRANS: Form instructions for group edit form. msgid "Use this form to edit the group." @@ -2160,70 +2141,67 @@ msgstr "Gardáronse as preferencias." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Borrar o usuario" +msgstr "Borrar a lista %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "A etiqueta de persoa non é correcta: %s." +msgstr "Editar a lista %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." -msgstr "Nin alcume nin ID." +msgstr "Nin etiquetador nin ID." #. TRANS: Client error displayed when referring to non-local user. -#, fuzzy msgid "Not a local user." -msgstr "Non existe tal usuario." +msgstr "Non é un usuario local." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Ten que ser administrador para editar o grupo." +msgstr "Ten que ser o creador da etiqueta para editala." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Utilice este formulario para editar o grupo." +msgstr "Utilice este formulario para editar a lista." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Borrar a nota" +msgstr "Abortouse a eliminación." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" +"Borrar esta etiqueta eliminará permanentemente todas as subscricións e os " +"rexistros de pertenza. Quere continuar?" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Tamaño non válido." +msgstr "Etiqueta non válida." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Xa repetiu esa nota." +msgstr "Xa ten unha nota chamada %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" +"Definir unha etiqueta pública como privada eliminará permanentemente todas " +"as subscricións a ela. Quere continuar?" #. TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Non se puido actualizar o usuario." +msgstr "Non se puido actualizar a lista." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2305,6 +2283,8 @@ msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" msgstr "" +"Para enviar notas mediante correo electrónico, necesitamos crear un enderezo " +"de correo electrónico único para vostede neste servidor:" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. @@ -2353,9 +2333,8 @@ msgid "No email address." msgstr "Non hai enderezo de correo electrónico." #. TRANS: Message given saving e-mail address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that email address." -msgstr "Non se pode normalizar ese enderezo de correo electrónico" +msgstr "Non se pode normalizar ese enderezo de correo electrónico." #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. @@ -2374,7 +2353,6 @@ msgstr "Ese enderezo de correo electrónico xa pertence a outro usuario." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#, fuzzy msgid "Could not insert confirmation code." msgstr "Non se puido inserir o código de confirmación." @@ -2421,7 +2399,6 @@ msgstr "Non hai ningún enderezo ao que enviar." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. -#, fuzzy msgid "Could not update user record." msgstr "Non se puido actualizar o rexistro do usuario." @@ -2510,9 +2487,9 @@ msgid "Featured users, page %d" msgstr "Usuarios do momento, páxina %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "Unha selección dalgúns bos usuarios en %s" +msgstr "Unha selección dalgúns bos usuarios en %s." #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2601,14 +2578,12 @@ msgstr "" "el no futuro." #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "Non excluír deste grupo a este usuario" +msgstr "Non excluír deste grupo a este usuario." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "Excluír deste grupo a este usuario" +msgstr "Excluír deste grupo a este usuario." #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. msgid "Database error blocking user from group." @@ -2672,24 +2647,24 @@ msgstr "Unha lista dos usuarios pertencentes a este grupo." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Só os administradores do grupo poden aprobar usuarios." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Membros do grupo %s" +msgstr "Membros do grupo %s á espera de aprobación" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Membros do grupo %1$s, páxina %2$d" +msgstr "Membros do grupo %1$s á espera de aprobación, páxina %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Unha lista dos usuarios pertencentes a este grupo." +msgstr "" +"Unha lista dos usuarios á espera de aprobación para ingresar neste grupo." #. TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name. #, php-format @@ -2703,7 +2678,7 @@ msgstr "Grupos" #. TRANS: Title for all but the first page of the groups list. #. TRANS: %d is the page number. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "Groups, page %d" msgstr "Grupos, páxina %d" @@ -2711,7 +2686,7 @@ msgstr "Grupos, páxina %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -2723,7 +2698,7 @@ msgstr "" "persoas de intereses similares aos seus. Tras unirse a un grupo pode enviar " "mensaxes a todos os membros utilizando a sintaxe \"!nomedogrupo\". Non atopa " "un grupo que lle guste? Probe a [buscar un](%%%%action.groupsearch%%%%) ou " -"[crear un pola súa conta!](%%%%action.newgroup%%%%)" +"[crear o seu](%%%%action.newgroup%%%%)!" #. TRANS: Link to create a new group on the group list page. #. TRANS: Link text on group page to create a new group. @@ -2754,11 +2729,12 @@ msgstr "Non houbo resultados." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." -msgstr "Se non atopa o grupo que busca, pode [crealo](%%action.newgroup%%)." +msgstr "" +"Se non atopa o grupo que busca, pode [crealo](%%action.newgroup%%) vostede." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). @@ -2790,33 +2766,32 @@ msgstr "Configuración da mensaxería instantánea" #. 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 "" -"Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%) de " -"Jabber/GTalk. Configure a continuación o seu enderezo e preferencias." +"Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%). " +"Configure a continuación o seu enderezo e as súas preferencias." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." msgstr "A mensaxería instantánea non está dispoñible." #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. -#, fuzzy, php-format +#, php-format msgid "Current confirmed %s address." -msgstr "Enderezo de correo electrónico confirmado actualmente." +msgstr "Enderezo de correo electrónico de %s confirmado actualmente." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Agardando pola confirmación deste enderezo. Busque na cúa conta de Jabber/" -"GTalk unha mensaxe con máis instrucións. (Engadiu a %s á súa lista de " -"amigos?)" +"Agardando pola confirmación deste enderezo. Busque na cúa conta de %1$s unha " +"mensaxe con máis instrucións. (Engadiu a %2$s á súa lista de amigos?)" #. TRANS: Field label for IM address. msgid "IM address" @@ -2832,31 +2807,24 @@ msgid "IM Preferences" msgstr "Preferencias de mensaxería instantánea" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Enviar unha nota" +msgstr "Enviádeme notas" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk." +msgstr "Publicar unha nota cando cambie o meu estado." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Enviádeme as respostas mediante Jabber ou GTalk da xente á que non estou " -"subscrita." +msgstr "Enviádeme as respostas da xente á que non estou subscrito." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico." +msgstr "Publicar un MicroID" #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Non se puido actualizar o usuario." +msgstr "Non se puideron actualizar as preferencias de mensaxería instantánea." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2868,40 +2836,34 @@ msgid "No screenname." msgstr "Sen alcume." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Non hai ningunha nota." +msgstr "Sen transporte." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Non se pode normalizar esa ID de Jabber" +msgstr "Non se pode normalizar ese alcume." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." -msgstr "O formato do alcume non é correcto." +msgstr "O alcume non é válido." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Esa ID de Jabber xa corresponde a un usuario." +msgstr "Ese alcume xa corresponde a un usuario." #. TRANS: Message given saving valid IM address that is to be confirmed. -#, fuzzy msgid "A confirmation code was sent to the IM address you added." msgstr "" "Enviouse un código de confirmación ao enderezo de mensaxería instantánea que " -"engadiu. Ten que aprobar que %s lle envíe mensaxes." +"engadiu." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." msgstr "Ese enderezo de mensaxería instantánea é incorrecto." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "Non se puido borrar a confirmación por mensaxería instantánea." +msgstr "Non se puido borrar a confirmación." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." @@ -2909,9 +2871,8 @@ msgstr "Cancelouse a confirmación por mensaxería instantánea." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#, fuzzy msgid "That is not your screenname." -msgstr "Ese número de teléfono non é seu." +msgstr "Ese alcume non é seu." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." @@ -2946,12 +2907,11 @@ msgstr "Ten que identificarse para invitar a outros a usar %s." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#, fuzzy, php-format +#, php-format msgid "Invalid email address: %s." -msgstr "Enderezo de correo electrónico incorrecto: %s" +msgstr "Enderezo de correo electrónico incorrecto: %s." #. TRANS: Page title when invitations have been sent. -#, fuzzy msgid "Invitations sent" msgstr "Enviáronse as invitacións" @@ -2963,10 +2923,9 @@ msgstr "Invitar a novos usuarios" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#, fuzzy msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "Xa está subscrito aos seguintes usuarios:" +msgstr[0] "Xa está subscrito ao seguinte usuario:" msgstr[1] "Xa está subscrito aos seguintes usuarios:" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). @@ -2979,22 +2938,19 @@ msgstr "%1$s (%2$s)" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#, fuzzy msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" -msgstr[0] "" -"Estas persoas xa son usuarios e subscribíuselle automaticamente a elas:" +msgstr[0] "Esta persoa xa é usuario e subscribíuselle automaticamente a ela:" msgstr[1] "" "Estas persoas xa son usuarios e subscribíuselle automaticamente a elas:" #. 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. -#, fuzzy msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" -msgstr[0] "Enviáronse invitacións ás seguintes persoas:" +msgstr[0] "Enviouse unha invitación á seguinte persoa:" msgstr[1] "Enviáronse invitacións ás seguintes persoas:" #. TRANS: Generic message displayed after sending out one or more invitations to @@ -3102,9 +3058,8 @@ msgid "Type" msgstr "Tipo" #. TRANS: Dropdown field instructions in the license admin panel. -#, fuzzy msgid "Select a license." -msgstr "Seleccionar unha licenza" +msgstr "Seleccione unha licenza." #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3143,9 +3098,8 @@ msgid "URL for an image to display with the license." msgstr "URL dunha imaxe a mostrar coa licenza." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Gardar a configuración de licenza" +msgstr "Gardar a configuración de licenza." #. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." @@ -3167,9 +3121,8 @@ msgid "Login to site" msgstr "Identificarse no sitio" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" -msgstr "Alcume ou enderezo de correo electrónico" +msgstr "Nome de usuario ou enderezo de correo electrónico" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. @@ -3271,9 +3224,8 @@ msgid "New group" msgstr "Novo grupo" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Vostede non pertence a este grupo." +msgstr "Non se lle permite crear grupos neste sitio." #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3286,7 +3238,6 @@ msgstr "Mensaxe nova" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." msgstr "Non pode enviarlle unha mensaxe a este usuario." @@ -3376,12 +3327,11 @@ msgstr "Actualizacións con \"%s\"" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Actualizacións que conteñen o termo \"%1$s\" en %2$s!" +msgstr "Actualizacións que conteñen o termo \"%1$s\" en %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. -#, fuzzy msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." @@ -3419,7 +3369,6 @@ msgid "Connected applications" msgstr "Aplicacións conectadas" #. TRANS: Instructions for OAuth connection settings. -#, fuzzy msgid "The following connections exist for your account." msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." @@ -3429,7 +3378,7 @@ msgstr "Non é usuario desa aplicación." #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for application: %s." msgstr "Non se puido revogar o acceso da aplicación: %s." @@ -3440,6 +3389,8 @@ msgid "" "You have successfully revoked access for %1$s and the access token starting " "with %2$s." msgstr "" +"Revogou correctamente o acceso de %1$s e o pase de acceso que comeza por %2" +"$s." #. TRANS: Empty list message when no applications have been authorised yet. msgid "You have not authorized any applications to use your account." @@ -3453,6 +3404,8 @@ msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +"É un desenvolvedor? [Rexistre unha aplicación de cliente de OAuth](%s) para " +"usala con esta instancia de StatusNet." #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. @@ -3462,9 +3415,9 @@ msgstr "Non se atopou \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "Non se atopou o método da API." +msgstr "Non se atopou a nota %s." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3480,15 +3433,15 @@ msgstr "Estado de %1$s en %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "Non se atopou o destinatario." +msgstr "Non se atopou o anexo %s." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr "\"%s\" non está soportado nas solicitudes oEmbed." #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #, php-format @@ -3506,13 +3459,12 @@ msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Configuración da mensaxería instantánea" +msgstr "Configuración da interface antiga" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Se prefire o estilo vello pode establecelo aquí." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3520,13 +3472,13 @@ msgid "Settings saved." msgstr "Gardouse a configuración." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Só modo de fluxo (sen conversas) nas liñas do tempo" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Mostrar a páxina de conversa como árbore xerárquica" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Mostrar os alcumes (non os nomes completos) nas liñas do tempo" #. TRANS: Button text to save a list. msgid "Save" @@ -3731,7 +3683,7 @@ msgstr "Servidor para os temas visuais." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." -msgstr "" +msgstr "Ruta de acceso aos temas visuais." #. TRANS: Field label in Paths admin panel. msgid "SSL server" @@ -3739,7 +3691,7 @@ msgstr "Servidor SSL" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL server for themes (default: SSL server)." -msgstr "" +msgstr "Servidor SSL dos temas visuais (por defecto: servidor SSL)." #. TRANS: Field label in Paths admin panel. msgid "SSL path" @@ -3747,16 +3699,15 @@ msgstr "Ruta de acceso SSL" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "" +msgstr "Ruta de acceso SSL dos temas visuais (por defecto: /theme/)." #. TRANS: Field label in Paths admin panel. msgid "Directory" msgstr "Directorio" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where themes are located." -msgstr "Ruta do directorio das traducións" +msgstr "Directorio dos temas visuais." #. TRANS: Fieldset legend in Paths admin panel. msgid "Avatars" @@ -3767,41 +3718,36 @@ msgid "Avatar server" msgstr "Servidor de avatares" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for avatars." -msgstr "Tema visual para o sitio." +msgstr "Servidor dos avatares." #. TRANS: Field label in Paths admin panel. msgid "Avatar path" msgstr "Ruta do avatar" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to avatars." -msgstr "Non se puido actualizar o avatar." +msgstr "Ruta de acceso aos avatares." #. TRANS: Field label in Paths admin panel. msgid "Avatar directory" msgstr "Directorio de avatares" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where avatars are located." -msgstr "Ruta do directorio das traducións" +msgstr "Directorio dos avatares." #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Ficheiros anexos" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments." -msgstr "Tema visual para o sitio." +msgstr "Servidor dos anexos." #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to attachments." -msgstr "Non hai ningún dato adxunto." +msgstr "Ruta de acceso aos anexos." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server for attachments on SSL pages." @@ -3812,9 +3758,8 @@ msgid "Web path to attachments on SSL pages." msgstr "Ruta de acceso cara aos anexos nas páxinas SSL." #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where attachments are located." -msgstr "Ruta do directorio das traducións" +msgstr "Directorio dos anexos." #. TRANS: Fieldset legend in Paths admin panel. msgctxt "LEGEND" @@ -3843,14 +3788,12 @@ msgid "When to use SSL." msgstr "Cando utilizar SSL." #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server to direct SSL requests to." -msgstr "Servidor ao que dirixir as solicitudes SSL" +msgstr "Servidor ao que dirixir as solicitudes SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Gardar a configuración do sitio" +msgstr "Gardar a configuración da ruta." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3869,46 +3812,46 @@ msgstr "Busca de xente" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "Nube de etiquetas públicas" +msgstr "Lista pública %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "Respostas a %1$s, páxina %2$d" +msgstr "Lista pública %1$s, páxina %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " -"de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " -"baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " -"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " +"As listas son o medio de clasificar xente similar en %%site.name%%, un " +"servizo de [mensaxes de blogue curtas](http://en.wikipedia.org/wiki/" +"Microblogging) (en inglés) baseado na ferramenta de software libre " +"[StatusNet](http://status.net/). Pode facer un seguimento do que fan " +"subscribíndose á liña do tempo da lista." #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." -msgstr "Esa etiqueta non existe." +msgstr "Sen etiquetador." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Respostas a %1$s en %2$s!" +msgstr "Persoas listadas en %1$s de %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Respostas a %1$s, páxina %2$d" +msgstr "Persoas listadas en %1$s de %2$s, páxina %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -3916,19 +3859,16 @@ msgid "Creator" msgstr "Creador" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Editar o grupo %s" +msgstr "As súas listas privadas" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Nube de etiquetas públicas" +msgstr "As súas listas públicas" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Editar o grupo %s" +msgstr "As súas listas" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. @@ -3938,22 +3878,22 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Listas de %1$s, páxina %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "Non pode ver as listas privadas doutros" #. TRANS: Mode selector label. msgid "Mode" msgstr "Modo" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Caixa de saída de %s" +msgstr "Listas de %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3962,7 +3902,7 @@ msgstr "Escolla unha etiqueta a filtrar" #. TRANS: Checkbox title. msgid "Show private tags." -msgstr "" +msgstr "Mostrar as etiquetas privadas." #. TRANS: Checkbox label to show public tags. msgctxt "LABEL" @@ -3970,9 +3910,8 @@ msgid "Public" msgstr "Públicas" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "Esa etiqueta non existe." +msgstr "Mostrar as etiquetas públicas." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. @@ -3983,7 +3922,7 @@ msgstr "Continuar" #. 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-" @@ -3991,32 +3930,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " -"de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " -"baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " -"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " +"Estas son as listas creadas por **%s**. As listas son o medio de clasificar " +"xente similar en %%%%site.name%%%%, un servizo de [mensaxes de blogue curtas]" +"(http://en.wikipedia.org/wiki/Microblogging) (en inglés) baseado na " +"ferramenta de software libre [StatusNet](http://status.net/). Pode facer un " +"seguimento do que fan subscribíndose á liña do tempo da lista." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." +msgstr "%s aínda non creou ningunha [lista](%%%%doc.lists%%%%)." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listas con %s nelas" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Listas con %1$s, páxina %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-" @@ -4024,46 +3964,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " -"de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " -"baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " -"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " +"Estas son as listas de **%s**. As listas son o medio de clasificar xente " +"similar en %%%%site.name%%%%, un servizo de [mensaxes de blogue curtas]" +"(http://en.wikipedia.org/wiki/Microblogging) (en inglés) baseado na " +"ferramenta de software libre [StatusNet](http://status.net/). Pode facer un " +"seguimento do que fan subscribíndose á liña do tempo da lista." #. 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. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." +msgstr "Ninguén [listou](%%%%doc.lists%%%%) a %s aínda." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "Subscribiuse a %s." +msgstr "Subscritores da lista %1$s de %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Subscritores da lista %1$s de %2$s, páxina %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Subscribiuse a %s." +msgstr "Listas ás que %s está subscrito" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s subscricións, páxina %2$d" +msgstr "Listas ás que %1$s está subscrito, páxina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4071,10 +4012,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " -"de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " -"baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " -"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " +"Estas son as listas ás que **%s** está subscrito. As listas son o medio de " +"clasificar xente similar en %%%%site.name%%%%, un servizo de [mensaxes de " +"blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " +"baseado na ferramenta de software libre [StatusNet](http://status.net/). " +"Pode facer un seguimento do que fan subscribíndose á liña do tempo da lista." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4090,14 +4032,12 @@ msgid "This action only accepts POST requests." msgstr "Esta acción só permite solicitudes POST." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Non pode borrar usuarios." +msgstr "Non pode administrar os complementos." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "Esa páxina non existe." +msgstr "Ese complemento non existe." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -4105,7 +4045,6 @@ msgid "Enabled" msgstr "Activado" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "Complementos" @@ -4116,32 +4055,35 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Pódense activar complementos adicionais e configuralos manualmente. Bote " +"unha ollada á documentación en " +"liña para obter máis información." #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "Lingua por defecto" +msgstr "Complementos por defecto" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Todos os complementos por defecto foron desactivados do ficheiro de " +"configuración do sitio." #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Campo \"%s\" non identificado." #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Buscar no sitio" +msgstr "Resultados da procura" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "O texto de procura debe conter un mínimo de 3 caracteres." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4181,9 +4123,8 @@ msgstr "Páxina persoal" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "URL of your homepage, blog, or profile on another site." -msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" +msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the @@ -4191,17 +4132,16 @@ msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" -msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" +msgstr[0] "Descríbase a vostede e mailos seus intereses en %d carácter." +msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#, fuzzy msgid "Describe yourself and your interests." -msgstr "Descríbase a vostede e mailos seus intereses" +msgstr "Descríbase a vostede e mailos seus intereses." #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4218,9 +4158,9 @@ msgstr "Localización" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" +msgstr "" +"Onde está a vivir, coma \"localidade, provincia (ou comunidade), país\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -4233,13 +4173,12 @@ msgid "Tags" msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e " -"guións baixos), separados por comas ou espazos" +"guións baixos), separados por comas ou espazos." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" @@ -4258,12 +4197,11 @@ msgid "What timezone are you normally in?" msgstr "En que fuso horario adoita estar?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Subscribirse automaticamente a quen se subscriba a min (o mellor para os " -"bots)" +"bots)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. msgid "Subscription policy" @@ -4271,19 +4209,22 @@ msgstr "Política de subscrición" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" -msgstr "" +msgstr "Permitir que calquera me siga" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Preguntarme primeiro" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." msgstr "" +"Se os outros usuarios necesitan o seu permiso para seguir as súas " +"actualizacións ou non." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" msgstr "" +"Facer as miñas actualizacións visibles unicamente para os meus seguidores" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4302,7 +4243,6 @@ msgid "Timezone not selected." msgstr "Non se escolleu ningún fuso horario." #. TRANS: Validation error in form for profile settings. -#, fuzzy msgid "Language is too long (maximum 50 characters)." msgstr "A lingua é longa de máis (o límite é de 50 caracteres)." @@ -4318,9 +4258,10 @@ msgstr "Etiqueta incorrecta: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Non se puido actualizar o usuario para subscribirse automaticamente." +msgstr "" +"Non se puido actualizar o usuario para subscribirse automaticamente ou " +"política de subscrición." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4332,9 +4273,8 @@ msgstr "Non se puideron gardar as etiquetas." #. 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 "Crear unha conta" +msgstr "Restaurar a conta" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4343,9 +4283,8 @@ msgid "Beyond the page limit (%s)." msgstr "Alén do límite da páxina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Non se puido obter o fluxo público." +msgstr "Non se puido obter a liña do tempo pública." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4359,24 +4298,20 @@ msgid "Public timeline" msgstr "Liña do tempo pública" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Fonte de novas no fluxo público (Atom)" +msgstr "Fonte de novas da liña temporal pública (fluxo de actividade JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Fonte de novas no fluxo público (RSS 1.0)" +msgstr "Fonte de novas da liña temporal pública (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Fonte de novas no fluxo público (RSS 2.0)" +msgstr "Fonte de novas da liña temporal pública (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Fonte de novas no fluxo público (Atom)" +msgstr "Fonte de novas da liña temporal pública (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4384,7 +4319,7 @@ msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -"Esta é a liña do tempo pública para %%site.name%% pero ninguén publicou nada " +"Esta é a liña do tempo pública de %%site.name%%, pero ninguén publicou nada " "aínda." #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. @@ -4427,9 +4362,9 @@ msgstr "" "software libre [StatusNet](http://status.net/)." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "%s actualizacións de todos!" +msgstr "%s actualizacións de todos." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4437,9 +4372,9 @@ msgstr "Nube de etiquetas públicas" #. TRANS: Instructions (more used like an explanation/header). #. TRANS: %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "These are most popular recent tags on %s" -msgstr "Estas son as etiquetas máis populares en %s " +msgstr "Estas son as etiquetas máis populares en %s" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" @@ -4746,7 +4681,7 @@ msgstr "" #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while delisting %s." -msgstr "" +msgstr "Houbo un erro inesperado ao retirar a %s da lista." #. TRANS: Client error displayed when an unknown error occurs while listing a user. #. TRANS: %s is a profile URL. @@ -4755,6 +4690,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"Houbo un problema ao engadir a %s á lista. Probablemente o servidor remoto " +"non estea respondendo correctamente. Inténteo de novo máis tarde." #. TRANS: Title after removing a user from a list. msgid "Unlisted" @@ -4795,9 +4732,9 @@ msgstr "Respostas a %1$s, páxina %2$d" #. 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 "Fonte de novas coas respostas a %s (Atom)" +msgstr "Fonte de novas coas respostas a %s (fluxo de actividade JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4849,14 +4786,13 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." -msgstr "Respostas a %1$s en %2$s!" +msgstr "Respostas a %1$s en %2$s." #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Só os usuarios identificados poden repetir notas." +msgstr "Só os usuarios identificados poden restaurar a súa conta." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. msgid "You may not restore your account." @@ -4903,25 +4839,28 @@ msgstr "Houbo un erro no sistema ao cargar o ficheiro." #. TRANS: Client exception thrown when a feed is not an Atom feed. #. TRANS: Client exception thrown when an imported feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "Todos os membros" +msgstr "Non é unha fonte de novas Atom." #. TRANS: Success message when a feed has been restored. msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" +"Restaurouse a fonte de novas. As súas mensaxes vellas debería aparecer agora " +"na procura e na súa páxina de perfil." #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." -msgstr "" +msgstr "A fonte de novas será restaurada. Agarde uns minutos." #. TRANS: Form instructions for feed restore. msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" +"Pode cargar unha copia de seguridade da liña do tempo en formato Activity Streams." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -5009,10 +4948,10 @@ msgstr "Perfil da aplicación" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Creado por %1$s - acceso %2$s por defecto - %3$d usuarios" +msgstr[0] "Creado por %1$s - acceso %2$s por defecto - %3$d usuario" msgstr[1] "Creado por %1$s - acceso %2$s por defecto - %3$d usuarios" #. TRANS: Header on the OAuth application page. @@ -5054,12 +4993,11 @@ msgid "Authorize URL" msgstr "Autorizar o URL" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Nota: sopórtanse as sinaturas HMAC-SHA1. Non se soporta o método de asinado " +"Nota: Sopórtanse as sinaturas HMAC-SHA1. Non se soporta o método de asinado " "con texto sinxelo." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. @@ -5079,9 +5017,9 @@ msgid "Could not retrieve favorite notices." msgstr "Non se puideron obter as notas favoritas." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Fonte de novas dos favoritos de %s (Atom)" +msgstr "Fonte de novas dos favoritos de %s (fluxos de actividade JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5145,9 +5083,9 @@ msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, páxina %2$d" #. 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 "Fonte de novas das notas do grupo %s (Atom)" +msgstr "Fonte de novas das notas do grupo %s (fluxos de actividade JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5191,7 +5129,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5201,7 +5139,7 @@ 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) " "baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " -"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " +"seus membros comparten mensaxes curtas sobre as súas vidas e intereses." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5233,68 +5171,69 @@ msgstr "Borrouse a nota." #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" +msgstr "Liña do tempo privada da súa lista %1$s, páxina %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" +msgstr "Liña do tempo da súa lista %1$s, páxina %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Liña do tempo da lista %1$s de %2$s, páxina %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 "Liña do tempo privada da súa lista %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 "Liña do tempo da súa lista %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Respostas a %1$s en %2$s!" +msgstr "Liña do tempo da lista %1$s de %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Fonte de novas dos favoritos de %s (Atom)" +msgstr "Fonte de novas da lista %1$s de %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Esta é a liña do tempo de %s e amigos pero ninguén publicou nada aínda." +"Esta é a liña do tempo da lista %1$s de %2$s, pero ninguén publicou nada " +"aínda." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." -msgstr "" +msgstr "Probe a etiquetar máis persoas." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " -"publicar unha?" +"Por que non [rexistrar unha conta](%%action.register%%) e comezar a seguir " +"esta liña do tempo?" #. TRANS: Header on show list page. #. TRANS: Link description for link to list of users tagged with a tag (so part of a list). @@ -5324,21 +5263,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s, páxina %2$d" +msgstr "Notas de %1$s etiquetadas con %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Notas de %1$s etiquetadas con %2$s, páxina %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Notas etiquetadas con %1$s, páxina %2$d" +msgstr "Notas de %1$s, páxina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5348,9 +5287,9 @@ msgstr "Fonte de novas das notas para %1$s etiquetadas con %2$s (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 "Fonte de novas das notas para %s (Atom)" +msgstr "Fonte de novas das notas para %s (fluxos de actividade JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5377,9 +5316,9 @@ msgid "FOAF for %s" msgstr "Amigo dun amigo para %s" #. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." -msgstr "Esta é a liña do tempo para %1$s pero %2$s aínda non publicou nada." +msgstr "Esta é a liña do tempo de %1$s, pero %1$s aínda non publicou nada." #. TRANS: Second sentence of empty list message for a stream for the user themselves. msgid "" @@ -5416,7 +5355,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5424,7 +5363,7 @@ msgid "" msgstr "" "**%s** ten unha conta en %%%%site.name%%%%, un servizo de [mensaxes de " "blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " -"baseado na ferramenta de software libre [StatusNet](http://status.net/). " +"baseado na ferramenta de software libre [StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5490,38 +5429,34 @@ msgid "Site name" msgstr "Nome do sitio" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "" "O nome do seu sitio, como por exemplo \"O sitio de mensaxes de blogue curtas " -"da miña empresa\"" +"da miña empresa\"." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Publicado por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Texto utilizado para a ligazón aos créditos ao pé de cada páxina" +msgstr "Texto utilizado para a ligazón aos créditos ao pé de cada páxina." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "URL do publicador" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL utilizado para a ligazón aos créditos ao pé de cada páxina" +msgstr "URL utilizado para a ligazón aos créditos ao pé de cada páxina." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Correo electrónico" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Enderezo de correo electrónico de contacto para o seu sitio" +msgstr "Enderezo de correo electrónico de contacto para o seu sitio." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5541,12 +5476,11 @@ msgid "Default language" msgstr "Lingua por defecto" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" "Lingua do sitio para cando a detección automática a partir do navegador non " -"sexa posible" +"sexa posible." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5584,9 +5518,8 @@ msgid "SSL logo" msgstr "Logo SSL" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Gardar a configuración do sitio" +msgstr "Gardar a configuración do sitio." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5601,7 +5534,6 @@ msgid "Unable to save site notice." msgstr "Non se puido gardar a nota do sitio." #. TRANS: Client error displayed when a site-wide notice was longer than allowed. -#, fuzzy msgid "Maximum length for the site-wide notice is 255 characters." msgstr "O tamaño máximo da nota global do sitio é de 255 caracteres." @@ -5610,15 +5542,13 @@ msgid "Site notice text" msgstr "Texto da nota do sitio" #. TRANS: Tooltip for site-wide notice text field in admin panel. -#, fuzzy msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Texto da nota global do sitio (255 caracteres como máximo, pode conter HTML)" #. TRANS: Button title to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Gardar a nota do sitio" +msgstr "Gardar a nota do sitio." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5664,11 +5594,10 @@ msgid "SMS phone number" msgstr "Número de teléfono para os SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." msgstr "" "Número de teléfono, sen signos de puntuación nin espazos en branco, co " -"código da zona" +"código da zona." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5715,9 +5644,8 @@ msgid "That is the wrong confirmation number." msgstr "Ese número de confirmación é incorrecto." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Non se puido borrar a confirmación por mensaxería instantánea." +msgstr "Non se puido borrar a confirmación por SMS." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5752,9 +5680,8 @@ msgstr "" "nesta lista, envíenos un correo electrónico para notificárnolo a %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Non se introduciu ningún código" +msgstr "Non se introduciu ningún código." #. TRANS: Title for admin panel to configure snapshots. msgctxt "TITLE" @@ -5795,32 +5722,28 @@ msgid "Data snapshots" msgstr "Instantáneas de datos" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Cando enviar información estatística aos servidores status.net" +msgstr "Cando enviar información estatística aos servidores status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "As instantáneas enviaranse unha vez cada N accesos á rede" +msgstr "As instantáneas enviaranse unha vez cada N accesos á rede." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de envío" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "As instantáneas enviaranse a este URL" +msgstr "As instantáneas enviaranse a este URL." #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Gardar a configuración das instantáneas" +msgstr "Gardar a configuración das instantáneas." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5833,50 +5756,48 @@ msgstr "Non se puido gardar a subscrición." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "Unicamente pode aprobar as súas propias subscricións pendentes." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "Membros do grupo %s" +msgstr "Subscritores de %s á espera de aprobación" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "Membros do grupo %1$s, páxina %2$d" +msgstr "Subscritores de %1$s á espera de aprobación, páxina %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Unha lista dos usuarios pertencentes a este grupo." +msgstr "" +"Unha lista dos usuarios á espera de aprobación para subscribirse a vostede." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscrito" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Ten que iniciar sesión para crear un grupo." +msgstr "Ten que iniciar sesión para cancelar a subscrición a unha lista." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." msgstr "Sen argumento ID." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." +msgstr "O usuario %1$s non se puido subscribir á lista %2$s: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "%1$s subscritores, páxina %2$d" +msgstr "%1$s subscrito á lista %2$s de %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5902,13 +5823,12 @@ msgid "These are the people who listen to %s's notices." msgstr "Estas son as persoas que están seguindo as notas de %s." #. TRANS: Subscriber list text when the logged in user has no subscribers. -#, fuzzy msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor." msgstr "" "Non ten subscritores. Probe a subscribirse a xente que coñeza e pode que lle " -"devolvan o favor" +"devolvan o favor." #. TRANS: Subscriber list text when looking at the subscribers for a of a user other #. TRANS: than the logged in user that has no subscribers. %s is the user nickname. @@ -5950,7 +5870,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5960,8 +5880,7 @@ 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 " "xente en grupos que lle interesen e nos nosos [usuarios destacados](%%action." -"featured%%). Se é [usuario do Twitter](%%action.twittersettings%%), pode " -"subscribirse automaticamente á xente que segue alí." +"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. @@ -5972,9 +5891,9 @@ msgid "%s is not listening to anyone." msgstr "%s non está seguindo a ninguén." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "Fonte de novas das notas para %s (Atom)" +msgstr "Fonte de novas de subscrición para %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. msgctxt "LABEL" @@ -5993,9 +5912,10 @@ msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Fonte de novas das notas para a etiqueta %s (Atom)" +msgstr "" +"Fonte de novas das notas para a etiqueta %s (fluxos de actividade JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6018,14 +5938,12 @@ msgstr "Fonte de novas das notas para a etiqueta %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "Non pode enviarlle unha mensaxe a este usuario." +msgstr "Non pode etiquetar este usuario." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "Perfil do usuario" +msgstr "Listar un perfil" #. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. @@ -6044,9 +5962,8 @@ msgid "User profile" msgstr "Perfil do usuario" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "Límites" +msgstr "Listar un usuario" #. TRANS: Field label on list form. msgctxt "LABEL" @@ -6054,13 +5971,12 @@ msgid "Lists" msgstr "Listas" #. TRANS: Field title on list form. -#, fuzzy msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e " -"guións baixos), separados por comas ou espazos" +"Listas para este usuario (letras salvo eñes e tiles, números, puntos, guións " +"e guións baixos), separados por comas ou espazos." #. TRANS: Title for personal tag cloud section. msgctxt "TITLE" @@ -6068,16 +5984,13 @@ msgid "Tags" msgstr "Etiquetas" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Gardouse o contrasinal." +msgstr "Listas gardadas." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" -"Utilice este formulario para engadir etiquetas aos seus subscritores ou " -"subscricións." +"Utilice este formulario para engadir subscritores ou subscricións ás listas." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6101,14 +6014,13 @@ msgstr "Cancelouse a subscrición" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "%1$s subscritores, páxina %2$d" +msgstr "%1$s non subscrito á lista %2$s de %3$s" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "Configuración da mensaxería instantánea" +msgstr "Configuración do URL" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6138,41 +6050,44 @@ msgstr "Servizo de abreviación automática a usar." #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "URL máis longo que" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +"Os enderezos URL máis longos que isto serán acurtados. 0 significa que se " +"acurtan sempre." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "Texto máis longo que" #. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"Os enderezos URL nas notas máis longos que isto serán acurtados. 0 significa " +"que se acurtan sempre." #. TRANS: Form validation error for form "Other settings" in user profile. -#, fuzzy msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" "O servizo de abreviación de enderezos URL é longo de máis (o límite está en " "50 caracteres)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "O contido da nota é incorrecto." +msgstr "Número inválido para a lonxitude máxima do URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "O contido da nota é incorrecto." +msgstr "Número inválido para a lonxitude máxima da nota." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" +"Erro ao gardar as preferencias de usuario sobre a abreviación de enderezos " +"URL." #. TRANS: User admin panel title. msgctxt "TITLE" @@ -6193,9 +6108,9 @@ msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." +msgstr "Subscrición por defecto incorrecta: \"%1$s\" non é un usuario." #. TRANS: Fieldset legend in user administration panel. msgctxt "LEGEND" @@ -6219,7 +6134,6 @@ msgid "New user welcome" msgstr "Nova benvida para os usuarios" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#, fuzzy msgid "Welcome text for new users (maximum 255 characters)." msgstr "Texto de benvida para os novos usuarios (255 caracteres como máximo)." @@ -6285,13 +6199,13 @@ msgstr "%s de StatusNet" #. 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 "" "Este sitio foi desenvolvido sobre a versión %2$s de %1$s, propiedade de " -"StatusNet, Inc. e colaboradores, 2008-2010." +"StatusNet, Inc. e colaboradores, 2008-2011." #. TRANS: Header for StatusNet contributors section on the version page. msgid "Contributors" @@ -6302,20 +6216,18 @@ 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." 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 " +"StatusNet é software libre: Pode redistribuílo e/ou modificalo baixo os " +"termos da licenza pública xeral Affero de GNU, tal e como a publicou a Free " "Software Foundation, versión 3 ou calquera versión posterior (a elección do " -"usuario) da licenza. " +"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 " @@ -6324,8 +6236,8 @@ msgid "" 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 " -"ou IDONEIDADE PARA UN PROPÓSITO PARTICULAR. Lea a Licenza Pública Xeral " -"Affero de GNU para máis información. " +"ou IDONEIDADE PARA UN PROPÓSITO PARTICULAR. Lea a licenza pública xeral " +"Affero de GNU para obter máis información." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6383,7 +6295,7 @@ msgstr "Robin pensa que algo é imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " "Try to upload a smaller version." @@ -6391,28 +6303,28 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr[0] "" -"Ningún ficheiro pode superar os %1$d bytes e o que enviou ocupaba %2$d. " -"Probe a subir un ficheiro máis pequeno." +"Ningún ficheiro pode superar o tamaño de %1$d byte e o que enviou ocupaba %2" +"$d bytes. Probe a subir un ficheiro máis pequeno." msgstr[1] "" -"Ningún ficheiro pode superar os %1$d bytes e o que enviou ocupaba %2$d. " -"Probe a subir un ficheiro máis pequeno." +"Ningún ficheiro pode superar os %1$d bytes e o que enviou ocupaba %2$d " +"bytes. Probe a subir un ficheiro máis pequeno." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#, fuzzy, php-format +#, 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." msgstr[0] "" -"Un ficheiro deste tamaño excedería a súa cota de usuario, que é de %d bytes." +"Un ficheiro deste tamaño excedería a súa cota de usuario, que é de %d byte." msgstr[1] "" "Un ficheiro deste tamaño excedería a súa cota de usuario, que é de %d bytes." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. -#, fuzzy, php-format +#, 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." -msgstr[0] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes." +msgstr[0] "Un ficheiro deste tamaño excedería a súa cota mensual de %d byte." msgstr[1] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. @@ -6423,13 +6335,13 @@ msgstr "Nome de ficheiro incorrecto." #. TRANS: %s is the invalid profile ID. #, php-format msgid "Profile ID %s is invalid." -msgstr "A identificación do perfil, %s, é incorrecta." +msgstr "O identificador do perfil, %s, é incorrecto." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "Houbo un erro ao gardar o usuario. Incorrecto." +msgstr "O identificador do grupo, %s, é incorrecto." #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." @@ -6464,9 +6376,9 @@ msgid "Could not create login token for %s" msgstr "Non se puido crear un pase de sesión para %s" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Non se puido gardar o novo contrasinal." +msgstr "Non se pode crear a instancia da clase %s." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6491,9 +6403,9 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "Non existe tal perfil (%1$d) para a nota (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "Houbo un erro na base de datos ao intentar inserir a etiqueta: %s" +msgstr "Houbo un erro na base de datos ao intentar inserir a etiqueta: %s." #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -6523,24 +6435,20 @@ msgid "You are banned from posting notices on this site." msgstr "Prohibíuselle publicar notas neste sitio de momento." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Non pode repetir a súa propia nota." +msgstr "Non se pode repetir; falta a nota orixinal ou esta foi borrada." #. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy msgid "You cannot repeat your own notice." msgstr "Non pode repetir a súa propia nota." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Non pode repetir a súa propia nota." +msgstr "Non pode repetir unha nota privada." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Non pode repetir a súa propia nota." +msgstr "Non pode repetir unha nota que non pode ler." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6548,9 +6456,9 @@ msgstr "Xa repetiu esa nota." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "O usuario non ten ningunha última nota." +msgstr "%1$s non ten acceso á nota %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6558,9 +6466,8 @@ msgid "Problem saving notice." msgstr "Houbo un problema ao gardar a nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#, fuzzy msgid "Bad type provided to saveKnownGroups." -msgstr "O tipo dado para saveKnownGroups era incorrecto" +msgstr "O tipo dado para saveKnownGroups era incorrecto." #. TRANS: Server exception thrown when an update for a group inbox fails. msgid "Problem saving group inbox." @@ -6595,32 +6502,27 @@ msgstr "" #. TRANS: Server exception. msgid "The tag you are trying to rename to already exists." -msgstr "" +msgstr "A etiqueta á que intenta mudar o nome xa existe." #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "Non se especificou ningún grupo." +msgstr "Non se especificou ningún etiquetador." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "Non se especificou ningún grupo." +msgstr "Non se especificou ningunha etiqueta." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "Non se puido gardar o perfil." +msgstr "Non se puido crear a etiqueta de perfil." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "Non se puido gardar o perfil." +msgstr "Non se puido definir o URI da etiqueta de perfil." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "Non se puido gardar o perfil." +msgstr "Non se puido definir a páxina principal da etiqueta de perfil." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6628,6 +6530,8 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Vostede xa creou %d ou máis etiquetas, que é o número máximo permitido. " +"Intente usar ou borrar algunha das que xa existen." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format @@ -6635,16 +6539,16 @@ msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number.Try unlisting others first." msgstr "" +"Vostede xa ten %1$d ou máis persoas na lista %2$s, que é o número máximo " +"permitido. Intente retirar algún da lista primeiro." #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "Non se puido borrar a subscrición." +msgstr "Erro ao engadir a subscrición á lista." #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "Non se puido borrar a subscrición." +msgstr "Erro ao eliminar a subscrición á lista." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -6697,7 +6601,7 @@ msgstr "Benvido a %1$s, @%2$s!" #. TRANS: Exception thrown when trying view "repeated to me". msgid "Not implemented since inbox change." -msgstr "" +msgstr "Non se integrou desde o cambio na caixa de entrada." #. TRANS: Server exception. msgid "No single user defined for single-user mode." @@ -6705,7 +6609,7 @@ msgstr "Non se estableceu ningún usuario único para o modo de usuario único." #. TRANS: Server exception. msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Chamouse ao código do modo de usuario único cando non estaba activado." #. TRANS: Information on password recovery form if no known username or e-mail address was specified. msgid "No user with that email address or username." @@ -6739,21 +6643,21 @@ msgstr "Non se puido gardar a información do grupo local." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. -#, fuzzy, php-format +#, php-format msgid "Cannot locate account %s." -msgstr "Non pode borrar usuarios." +msgstr "Non se pode localizar a conta %s." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. #, php-format msgid "Cannot find XRD for %s." -msgstr "" +msgstr "Non se pode atopar o XRD para %s." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. #, php-format msgid "No AtomPub API service for %s." -msgstr "" +msgstr "Non hai ningún servizo API de AtomPub para %s." #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. @@ -6909,25 +6813,23 @@ msgstr "Verbo descoñecido: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." -msgstr "" +msgstr "Non se pode forzar a subscrición a un usuario que non é de confianza." #. TRANS: Client exception thrown when trying to force a remote user to subscribe. -#, fuzzy msgid "Cannot force remote user to subscribe." -msgstr "Introduza o nome do usuario ao que quere subscribirse." +msgstr "Non se pode forzar ao usuario remoto a que se subscriba." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#, fuzzy msgid "Unknown profile." -msgstr "Non se coñece o tipo de ficheiro" +msgstr "Perfil descoñecido." #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." -msgstr "" +msgstr "Semella que a actividade non está relacionada co noso usuario." #. TRANS: Client exception thrown when trying to join a remote group that is not a group. msgid "Remote profile is not a group!" -msgstr "" +msgstr "O perfil remoto non é un grupo!" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. msgid "User is already a member of this group." @@ -6937,11 +6839,12 @@ msgstr "O usuario xa forma parte dese grupo." #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. #, php-format msgid "Already know about notice %1$s and it has a different author %2$s." -msgstr "" +msgstr "A nota %1$s xa é coñecida e ten un autor diferente %2$s." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. msgid "Not overwriting author info for non-trusted user." msgstr "" +"Non se sobrescribiu a información de autor do usuario que non é de confianza." #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. @@ -7125,10 +7028,10 @@ msgstr "Nome" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "Describa a súa aplicación en %d caracteres" +msgstr[0] "Describa a súa aplicación en %d carácter" msgstr[1] "Describa a súa aplicación en %d caracteres" #. TRANS: Form input field instructions. @@ -7192,14 +7095,12 @@ msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Aplicacións conectadas" +msgstr "Rexeitar os cambios na aplicación." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Aplicación nova" +msgstr "Gardar os cambios na aplicación." #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7227,7 +7128,7 @@ msgstr "Aprobado o %1$s - permisos de \"%2$s\"." #. TRANS: %s are the first 7 characters of the access token. #, php-format msgid "Access token starting with: %s" -msgstr "" +msgstr "Pase de acceso que comeza por: %s" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" @@ -7247,25 +7148,23 @@ msgid "Reject" msgstr "Rexeitar" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. -#, fuzzy msgid "Author element must contain a name element." -msgstr "o elemento \"autor\" debe conter un nome." +msgstr "O elemento \"author\" debe conter un elemento \"name\"." #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. -#, fuzzy msgid "Do not use this method!" -msgstr "Non borrar esta nota" +msgstr "Non use ese método!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "Respostas a %1$s en %2$s!" +msgstr "Liña do tempo da xente na lista %1$s de %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "Actualizacións de %1$s en %2$s!" +msgstr "Actualizacións da lista %2$s de %1$s en %3$s!" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7276,14 +7175,12 @@ msgid "Tags for this attachment" msgstr "Etiquetas para este ficheiro" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." -msgstr "Non se puido cambiar o contrasinal" +msgstr "Non se puido cambiar o contrasinal." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. -#, fuzzy msgid "Password changing is not allowed." -msgstr "Non se permite cambiar o contrasinal" +msgstr "Non se permite cambiar o contrasinal." #. TRANS: Title for the form to block a user. msgid "Block" @@ -7296,22 +7193,20 @@ msgstr "Bloquear este usuario" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Cancelar a solicitude de ingreso" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Todas as subscricións" +msgstr "Cancelar a solicitude de subscrición" #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados da orde" #. TRANS: Title for command results. -#, fuzzy msgid "AJAX error" -msgstr "Houbo un erro de AJAX" +msgstr "Erro de AJAX" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. @@ -7372,9 +7267,8 @@ msgstr "" "Notas: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: Already favorited." -msgstr "Non se puido crear o favorito." +msgstr "Non se puido crear o favorito: Xa está nos favoritos." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." @@ -7396,16 +7290,16 @@ msgstr "%1$s deixou o grupo %2$s." #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "Erro ao etiquetar a %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s - %2$s" -msgstr[1] "%1$s - %2$s" +msgstr[0] "%1$s foi etiquetado con %2$s" +msgstr[1] "%1$s foi etiquetado con %2$s" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". @@ -7422,7 +7316,7 @@ msgstr "Etiqueta incorrecta: \"%s\"" #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "Erro ao desetiquetar a %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7430,8 +7324,8 @@ msgstr "" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Eliminouse esta etiqueta do usuario %1$s: %2$s." +msgstr[1] "Elimináronse estas etiquetas do usuario %1$s: %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -7478,13 +7372,12 @@ msgstr "" #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, #. TRANS: %2$s is the number of characters sent (used for plural). -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr[0] "" -"A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2$d." +msgstr[0] "A mensaxe é longa de máis. O límite é %1$d carácter, e enviou %2$d." msgstr[1] "" -"A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2$d." +"A mensaxe é longa de máis. O límite son %1$d caracteres, e enviou %2$d." #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). msgid "You can't send a message to this user." @@ -7502,11 +7395,10 @@ msgstr "Repetiuse a nota de %s." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#, fuzzy, php-format +#, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." -msgstr[0] "" -"A nota é longa de máis. O límite son %1$d caracteres, e enviou %2$d." +msgstr[0] "A nota é longa de máis. O límite é %1$d carácter, e enviou %2$d." msgstr[1] "" "A nota é longa de máis. O límite son %1$d caracteres, e enviou %2$d." @@ -7628,16 +7520,14 @@ msgid "Commands:" msgstr "Comandos:" #. TRANS: Help message for IM/SMS command "on". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Non se pode activar a notificación." +msgstr "activar as notificacións" #. TRANS: Help message for IM/SMS command "off". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Non se pode desactivar a notificación." +msgstr "desactivar as notificacións" #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" @@ -7645,140 +7535,130 @@ msgid "show this help" msgstr "mostrar esta axuda" #. TRANS: Help message for IM/SMS command "follow ". -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Subscribirse a este usuario" +msgstr "subscribirse ao usuario" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "listar os grupos aos que se uniu" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "Etiquetar ao usuario" +msgstr "etiquetar ao usuario" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "Etiquetar ao usuario" +msgstr "desetiquetar ao usuario" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "listar a xente á que segue" #. TRANS: Help message for IM/SMS command "subscribers". msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "listar a xente que o segue" #. TRANS: Help message for IM/SMS command "leave ". -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "Cancelar a subscrición a este usuario" +msgstr "cancelar a subscrición ao usuario" #. TRANS: Help message for IM/SMS command "d ". -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Mensaxes directas a %s" +msgstr "mensaxe directa ao usuario" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "obter a última nota do usuario" #. TRANS: Help message for IM/SMS command "whois ". -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Información do perfil" +msgstr "obter a información do perfil do usuario" #. TRANS: Help message for IM/SMS command "lose ". msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "forzar o usuario a deixar de seguilo" #. TRANS: Help message for IM/SMS command "fav ". msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" -msgstr "" +msgstr "engadir a última nota do usuario como favorita" #. TRANS: Help message for IM/SMS command "fav #". msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" -msgstr "" +msgstr "engadir a nota co identificador especificado como favorita" #. TRANS: Help message for IM/SMS command "repeat #". msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "repetir a nota cun identificador especificado" #. TRANS: Help message for IM/SMS command "repeat ". -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Repetir esta nota" +msgstr "repetir a última nota do usuario" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "responder á nota cun identificador especificado" #. TRANS: Help message for IM/SMS command "reply ". -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Responder a esta nota" +msgstr "responder á última nota do usuario" #. TRANS: Help message for IM/SMS command "join ". -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Descoñecida" +msgstr "unirse ao grupo" #. TRANS: Help message for IM/SMS command "login". msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" -msgstr "" +msgstr "Obter unha ligazón para iniciar sesión" #. TRANS: Help message for IM/SMS command "drop ". -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Borrar un grupo" +msgstr "deixar o grupo" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "" +msgstr "obter as súas estatísticas" #. TRANS: Help message for IM/SMS command "stop". #. TRANS: Help message for IM/SMS command "quit". msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "igual que \"off\"" #. TRANS: Help message for IM/SMS command "sub ". msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "igual que \"follow\"" #. TRANS: Help message for IM/SMS command "unsub ". msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "igual que \"leave\"" #. TRANS: Help message for IM/SMS command "last ". msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "igual que \"get\"" #. TRANS: Help message for IM/SMS command "on ". #. TRANS: Help message for IM/SMS command "off ". @@ -7789,26 +7669,23 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all". #. TRANS: Help message for IM/SMS command "tracks". #. TRANS: Help message for IM/SMS command "tracking". -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Aínda non se integrou esa orde." +msgstr "aínda non se integrou." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "recordar un usuario a que actualice." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#, fuzzy msgid "No configuration file found." -msgstr "Non se atopou ningún ficheiro de configuración. " +msgstr "Non se atopou ningún ficheiro de configuración." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). -#, fuzzy msgid "I looked for configuration files in the following places:" -msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: " +msgstr "Buscáronse ficheiros de configuración nos seguintes lugares:" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "You may wish to run the installer to fix this." @@ -7850,9 +7727,9 @@ msgid "Delete this user" msgstr "Borrar o usuario" #. TRANS: Exception. %s is an ID. -#, fuzzy, php-format +#, php-format msgid "Unable to find services for %s." -msgstr "Non se puido revogar o acceso da aplicación: %s." +msgstr "Non se puideron atopar os servizos de %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. msgid "Disfavor this notice" @@ -7864,24 +7741,21 @@ msgid "Disfavor favorite" msgstr "Desmarcar como favorita" #. TRANS: Button title for removing the favourite status for a favourite notice. -#, fuzzy msgid "Remove this notice from your list of favorite notices." -msgstr "Non se puideron obter as notas favoritas." +msgstr "Eliminar esta nota da lista de notas favoritas." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Marcar esta nota como favorita" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" msgstr "Marcar como favorito" #. TRANS: Button title for adding the favourite status to a notice. -#, fuzzy msgid "Add this notice to your list of favorite notices." -msgstr "Non se puideron obter as notas favoritas." +msgstr "Engadir esta nota á lista de notas favoritas." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7901,16 +7775,16 @@ msgstr "Amigo dun amigo" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "Fluxos de actividade" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." -msgstr "" +msgstr "Non hai autor ningún na fonte de novas." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. msgid "Cannot import without a user." -msgstr "" +msgstr "Non se pode importar sen un usuario." #. TRANS: Header for feed links (h2). msgid "Feeds" @@ -7963,33 +7837,30 @@ msgstr "Bloquear" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Block this user so that they can no longer post messages to it." -msgstr "" +msgstr "Bloquear este usuario de xeito que non poida publicar máis mensaxes." #. TRANS: Field title on group edit form. -#, fuzzy msgid "URL of the homepage or blog of the group or topic." -msgstr "URL do sitio web persoal ou blogue do grupo ou tema" +msgstr "URL do sitio web persoal ou blogue do grupo ou tema." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Describa o grupo ou o tema" +msgstr "Describa o grupo ou o tema." #. 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] "Describa o grupo ou o tema en %d caracteres" -msgstr[1] "Describa o grupo ou o tema en %d caracteres" +msgstr[0] "Describa o grupo ou o tema en %d carácter ou menos." +msgstr[1] "Describa o grupo ou o tema en %d caracteres ou menos." #. TRANS: Field title on group edit form. -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" "Localidade do grupo, se a ten, como por exemplo \"Cidade, Provincia, " -"Comunidade, País\"" +"Comunidade, País\"." #. TRANS: Field label on group edit form. msgid "Aliases" @@ -7997,7 +7868,7 @@ msgstr "Pseudónimos" #. TRANS: Input field title for group aliases. #. TRANS: %d is the maximum number of group aliases available. -#, fuzzy, php-format +#, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "alias allowed." @@ -8005,16 +7876,18 @@ msgid_plural "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "aliases allowed." msgstr[0] "" -"Alcumes adicionais para o grupo, separados por comas ou espazos, %d como " -"máximo" +"Alcumes adicionais para o grupo, separados por comas ou espazos. %d como " +"máximo." msgstr[1] "" -"Alcumes adicionais para o grupo, separados por comas ou espazos, %d como " -"máximo" +"Alcumes adicionais para o grupo, separados por comas ou espazos. %d como " +"máximo." #. TRANS: Checkbox field title on group edit form to mark a group private. msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"Os novos membros deben ser aprobados por un administrador e todas as " +"mensaxes fórzanse a ser privadas." #. TRANS: Indicator in group members list that this user is a group administrator. msgctxt "GROUPADMIN" @@ -8064,7 +7937,7 @@ 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 "" +msgstr "Volver arriba" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8129,6 +8002,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" +"O usuario \"%1$s\" de %2$s dixo que o pseudónimo %3$s perténcelle a el ou " +"ela. Se é certo, pódeo confirmar premendo neste enderezo URL: %4$s. (Se non " +"pode premer nel, copie e pegue o enderezo na barra de enderezos do " +"navegador.) Se ese usuario non é vostede ou se non solicitou esta " +"confirmación, ignore esta mensaxe." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -8139,10 +8017,12 @@ msgstr "Non se coñece a fonte %d da caixa de entrada." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." msgstr "" +"Cómpre activar a cola para empregar os complementos de mensaxería " +"instantánea." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "O transporte non pode ser nulo." #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" @@ -8150,24 +8030,21 @@ msgid "Trends" msgstr "Tendencias" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Invitar a novos usuarios" +msgstr "Convidar máis colegas" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Invitar a novos usuarios" +msgstr "Convidar colegas" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" msgstr "Enderezos de correo electrónico" #. TRANS: Field title for a list of e-mail addresses. -#, fuzzy msgid "Addresses of friends to invite (one per line)." -msgstr "Enderezos de amigos aos que invitar (un por liña)" +msgstr "Enderezos de amigos aos que convidar (un por liña)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -8198,9 +8075,8 @@ msgid "Leave" msgstr "Deixar" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Aplicacións que rexistrou" +msgstr "Ver todas as listas que creou." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8228,7 +8104,7 @@ msgstr "Confirmación do enderezo de correo electrónico" #. TRANS: Body for address confirmation email. #. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the URL to confirm at. -#, fuzzy, php-format +#, php-format msgid "" "Hey, %1$s.\n" "\n" @@ -8243,18 +8119,18 @@ msgid "" "Thanks for your time, \n" "%2$s\n" msgstr "" -"Ola, %s:\n" +"Ola, %1$s:\n" "\n" -"Alguén acaba de introducir este enderezo de correo electrónico en %s.\n" +"Alguén acaba de introducir este enderezo de correo electrónico en %2$s.\n" "\n" "Se foi vostede, e quere confirmalo, utilice o seguinte URL:\n" "\n" -"%s\n" +"%3$s\n" "\n" "En caso contrario, simplemente ignore esta mensaxe.\n" "\n" "Grazas polo seu tempo, \n" -"%s\n" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -8266,9 +8142,9 @@ msgstr "%1$s xa o está seguindo a vostede en %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "Agora %1$s segue as súas notas en %2$s." +msgstr "%1$s quere seguir as súas notas en %2$s." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. @@ -8277,11 +8153,13 @@ msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" +"%1$s quere seguir as súas notas en %2$s. Pode aprobar ou rexeitar esta " +"subscrición en %3$s" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -8289,17 +8167,12 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"Agora %1$s segue as súas notas en %2$s.\n" -"\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" "Atentamente,\n" -"%7$s.\n" +"%1$s.\n" "\n" "----\n" "Modifique o seu enderezo de correo electrónico ou as súas preferencias de " -"notificación en %8$s\n" +"notificación en %2$s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. @@ -8315,13 +8188,13 @@ msgstr "Biografía: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." msgstr "" "Se cre que esta conta se está usando con fins abusivos, pode bloquear a súa " -"lista de subscritores e informar disto aos administradores do sitio en %s" +"lista de subscritores e informar disto aos administradores do sitio en %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -8332,7 +8205,7 @@ msgstr "Novo enderezo de correo electrónico para publicar en %s" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. 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" @@ -8344,10 +8217,7 @@ msgstr "" "\n" "Envíe un correo electrónico a %2$s para publicar mensaxes novas.\n" "\n" -"Máis información en %3$s.\n" -"\n" -"Atentamente,\n" -"%4$s" +"Máis información en %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -8375,7 +8245,7 @@ msgstr "%s fíxolle un aceno" #. 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" @@ -8393,10 +8263,7 @@ msgstr "" "\n" "%3$s\n" "\n" -"Non responda a esta mensaxe, non lle chegará ao remitente.\n" -"\n" -"Atentamente,\n" -"%4$s\n" +"Non responda a esta mensaxe, non lle chegará ao remitente." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -8444,7 +8311,7 @@ msgstr "%1$s (@%2$s) marcou a súa nota como favorita" #. 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" @@ -8473,10 +8340,7 @@ msgstr "" "\n" "Pode ver a lista das notas favoritas de %1$s en:\n" "\n" -"%5$s\n" -"\n" -"Atentamente,\n" -"%6$s\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8491,16 +8355,16 @@ msgstr "" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) sent a notice to your attention" -msgstr "%s (@%s) enviou unha nota á súa atención" +msgstr "%1$s (@%2$s) enviou unha nota á súa atención" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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" @@ -8520,8 +8384,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) acaba de enviar unha nota á súa atención (unha resposta) en %2" -"$s.\n" +"%1$s acaba de enviar unha nota á súa atención (unha resposta) en %2$s.\n" "\n" "A nota está en:\n" "\n" @@ -8537,12 +8400,7 @@ msgstr "" "\n" "A lista de todas as respostas está en:\n" "\n" -"%7$s\n" -"\n" -"Atentamente,\n" -"%2$s\n" -"\n" -"P.S.: pode desactivar estas notificacións por correo electrónico en %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. @@ -8572,6 +8430,8 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"%1$s quere unirse ao seu grupo %2$s en %3$s. Pode aprobar ou rexeitar este " +"ingreso en %4$s" #. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." @@ -8635,10 +8495,9 @@ msgid "Make Admin" msgstr "Converter en administrador" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "Converter a este usuario en administrador" +msgstr "Converter a este usuario en administrador." #. 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." @@ -8687,9 +8546,8 @@ msgid "Select recipient:" msgstr "Seleccionar o destinatario:" #. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#, fuzzy msgid "No mutual subscribers." -msgstr "Non está subscrito!" +msgstr "Non hai subscritores mutuos." #. TRANS: Dropdown label in direct notice form. msgid "To" @@ -8736,25 +8594,23 @@ msgstr "api" #. TRANS: Client exception thrown when no author for an activity was found. msgid "Cannot get author for activity." -msgstr "" +msgstr "Non se pode obter o autor da actividade." #. TRANS: Client exception thrown when ... -#, fuzzy msgid "Bookmark not posted to this group." -msgstr "Vostede non pertence a este grupo." +msgstr "O favorito non se publicou no grupo." #. TRANS: Client exception when ... -#, fuzzy msgid "Object not posted to this user." -msgstr "Non borrar esta nota" +msgstr "O obxecto non se publicou neste usuario." #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. msgid "Do not know how to handle this kind of target." -msgstr "" +msgstr "Non se sabe como manexar este tipo de obxectivo." #. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. msgid "You must implement either adaptNoticeListItem() or showNotice()." -msgstr "" +msgstr "Pode introducir adaptNoticeListItem() ou ben showNotice()." #. TRANS: Link description to show more items in a list. msgid "More ▼" @@ -8762,14 +8618,14 @@ msgstr "Máis ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." -msgstr "" +msgstr "O alcume non pode estar baleiro." #. TRANS: Validation error in form for registration, profile and group settings, etc. #, php-format msgid "Nickname cannot be more than %d character long." msgid_plural "Nickname cannot be more than %d characters long." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "O alcume non pode superar %d carácter." +msgstr[1] "O alcume non pode superar os %d caracteres." #. TRANS: Form legend for notice form. msgid "Send a notice" @@ -8883,9 +8739,8 @@ msgid "Send a nudge to this user." msgstr "Facerlle un aceno a este usuario." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. -#, fuzzy msgid "No oEmbed API endpoint available." -msgstr "A mensaxería instantánea non está dispoñible." +msgstr "Non hai dispoñible ningún punto de fin da API de oEmbed." #. TRANS: Field label for list. msgctxt "LABEL" @@ -8945,9 +8800,9 @@ msgstr "Subscritores" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Subscribiuse a %s." +msgstr "Subscritores da lista %1$s de %2$s." #. TRANS: Menu item in list navigation panel. msgctxt "MENU" @@ -8956,14 +8811,13 @@ msgstr "Modificar" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Editar o grupo %s" +msgstr "Editar a súa lista %s." #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Modificar a configuración do perfil" +msgstr "Modificar a configuración da lista." #. TRANS: Text for link to edit list settings. msgid "Edit" @@ -8975,31 +8829,30 @@ msgid "Private" msgstr "Privado" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Subscricións" +msgstr "Subscricións á lista" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Subscribiuse a %s." +msgstr "Listas ás que %s está subscrito." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Actualizacións con \"%s\"" +msgstr "Listas con %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Actualizacións con \"%s\"" +msgstr "Listas con %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. @@ -9021,10 +8874,9 @@ msgid "Your lists" msgstr "As súas listas" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "A etiqueta de persoa non é correcta: %s." +msgstr "Editar as listas" #. TRANS: Label in self tags widget. msgctxt "LABEL" @@ -9037,25 +8889,24 @@ msgstr "Listas populares" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s subscritores, páxina %2$d" +msgstr "Usuarios na lista: %1$d Subscritores: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "Non se atopou o método da API." +msgstr "Listas con vostede" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Actualizacións con \"%s\"" +msgstr "Listas con %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "%s subscricións" +msgstr "Subscricións á lista" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -9111,6 +8962,7 @@ msgctxt "plugin-description" msgid "" "(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" +"(A descrición do complemento non está dispoñible ao estar desactivado.)" #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9178,7 +9030,7 @@ msgstr "Listas" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." -msgstr "Aínda non se implantou o método." +msgstr "Aínda non se integrou o método." #. TRANS: Menu item title in search group navigation panel. msgid "User groups" @@ -9261,6 +9113,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Asegúrese de que non haxa faltas de ortografía.\n" +"* Probe con palabras clave diferentes.\n" +"* Probe con máis palabras clave xerais.\n" +"* Probe con menos palabras clave." #. TRANS: Standard search suggestions shown when a search does not give any results. #, php-format @@ -9274,6 +9130,14 @@ msgid "" "* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" "* [Collecta](http://collecta.com/#q=%s)" msgstr "" +"Tamén pode probar a súa procura noutros motores:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" @@ -9400,11 +9264,11 @@ msgstr "Aplicacións conectadas autorizadas" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Interface antiga" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Axustes da interface antiga para os usuarios" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9416,24 +9280,22 @@ msgid "Silence this user" msgstr "Silenciar a este usuario" #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. -#, fuzzy msgid "Could not create anonymous consumer." -msgstr "Non se puideron crear os pseudónimos." +msgstr "Non se puideron crear os consumidores anónimos." #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#, fuzzy msgid "Could not create anonymous OAuth application." -msgstr "Non se puido crear a aplicación." +msgstr "Non se puido crear a aplicación de OAuth anónima." #. TRANS: Exception thrown when no token association could be found. msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"Non se puideron atopar perfís ou aplicacións asociados ao pase da solicitude." #. TRANS: Exception thrown when no access token can be issued. -#, fuzzy msgid "Could not issue access token." -msgstr "Non se puido inserir a mensaxe." +msgstr "Non se puido emitir o pase de acceso." #. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." @@ -9442,11 +9304,10 @@ msgstr "" "OAuth." #. TRANS: Exception thrown when a database error occurs. -#, fuzzy msgid "Database error updating OAuth application user." msgstr "" -"Houbo un erro na base de datos ao intentar inserir o usuario da aplicación " -"OAuth." +"Houbo un erro na base de datos ao intentar actualizar o usuario da " +"aplicación OAuth." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. msgid "Tried to revoke unknown token." @@ -9493,9 +9354,9 @@ msgstr "Grupos aos que pertence %s." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Persoas subscritas a %s" +msgstr "Lista de subscricións de %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -9504,9 +9365,9 @@ msgstr "Convidar" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Convide a amigos e compañeiros a unírselle en %s" +msgstr "Convide a amigos e compañeiros a unírselle en %s." #. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" @@ -9536,9 +9397,8 @@ msgid "None" msgstr "Ningún" #. TRANS: Server exception displayed if a theme name was invalid. -#, fuzzy msgid "Invalid theme name." -msgstr "Nome de ficheiro incorrecto." +msgstr "Nome de tema visual incorrecto." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." @@ -9556,27 +9416,25 @@ msgid "Failed saving theme." msgstr "Non se puido gardar o tema visual." #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. -#, fuzzy msgid "Invalid theme: Bad directory structure." -msgstr "Tema visual inválido: a estrutura do directorio é incorrecta" +msgstr "Tema visual inválido: A estrutura do directorio é incorrecta." #. TRANS: Client exception thrown when an uploaded theme is larger than the limit. #. TRANS: %d is the number of bytes of the uncompressed theme. -#, fuzzy, php-format +#, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" "O tema visual cargado é grande de máis; o tamaño descomprimido non pode " -"superar os %d bytes." +"superar %d byte." msgstr[1] "" "O tema visual cargado é grande de máis; o tamaño descomprimido non pode " "superar os %d bytes." #. TRANS: Server exception thrown when an uploaded theme is incomplete. -#, fuzzy msgid "Invalid theme archive: Missing file css/display.css" -msgstr "Arquivo de tema visual inválido: falta o ficheiro css/display.css" +msgstr "Arquivo de tema visual inválido: Falta o ficheiro css/display.css" #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9592,7 +9450,7 @@ msgstr "O tema visual contén nomes de extensión inseguros." #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. -#, fuzzy, php-format +#, php-format msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "O tema visual contén o tipo de ficheiro \".%s\". Non está permitido." @@ -9636,8 +9494,8 @@ msgstr "Gústalle isto." #, php-format msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%%s e outros %d gustan disto." +msgstr[1] "%%s e outros %d gustan disto." #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. @@ -9645,8 +9503,8 @@ msgstr[1] "" #, php-format msgid "%%s likes this." msgid_plural "%%s like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%%s gusta disto." +msgstr[1] "%%s gustan disto." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" @@ -9659,22 +9517,22 @@ msgstr "Xa repetiu esa nota." #, php-format msgid "%%s and %d other repeated this." msgid_plural "%%s and %d others repeated this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%%s e outros %d repetiron isto." +msgstr[1] "%%s e outros %d repetiron 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. -#, fuzzy, php-format +#, php-format msgid "%%s repeated this." msgid_plural "%%s repeated this." -msgstr[0] "Repetiu a %s" -msgstr[1] "Repetiu a %s" +msgstr[0] "%%s repetiu isto." +msgstr[1] "%%s repetiron isto." #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "Buscar no sitio" +msgstr "Buscar e listar persoas" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" @@ -9689,15 +9547,13 @@ msgid "URI (Remote users)" msgstr "URI (usuarios remotos)" #. TRANS: Dropdown field label. -#, fuzzy msgctxt "LABEL" msgid "Search in" -msgstr "Buscar no sitio" +msgstr "Buscar en" #. TRANS: Dropdown field title. -#, fuzzy msgid "Choose a field to search." -msgstr "Escolla unha etiqueta para reducir a lista" +msgstr "Elixa un campo para a procura." #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. @@ -9736,9 +9592,9 @@ msgid "Private?" msgstr "Privada?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Non se coñece a lingua \"%s\"." +msgstr "Descoñécese o valor: \"%s\"." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -9783,9 +9639,8 @@ msgid "User %1$s (%2$d) has no profile record." msgstr "O usuario %1$s (%2$d) non ten perfil." #. TRANS: Authorisation exception thrown when a user a not allowed to login. -#, fuzzy msgid "Not allowed to log in." -msgstr "Non iniciou sesión." +msgstr "Non se lle permite iniciar sesión." #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "a few seconds ago" @@ -9841,7 +9696,7 @@ msgstr "hai como un ano" #. TRANS: Web color exception thrown when a hexadecimal color code does not validate. #. TRANS: %s is the provided (invalid) color code. -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color! Use 3 or 6 hex characters." msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." @@ -9851,9 +9706,9 @@ msgstr "XML inválido." #. TRANS: Exception. msgid "Invalid XML, missing XRD root." -msgstr "" +msgstr "XML inválido, falta a raíz XRD." #. TRANS: Commandline script output. %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "Obtendo a copia de seguridade desde o ficheiro \"%s\"." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 781c8baca3..6130010b7b 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index a6e4c1f175..96238208bb 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:53+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hsb\n" @@ -46,9 +46,8 @@ msgid "" msgstr "" #. TRANS: Error message displayed when trying to access a non-existing page. -#, fuzzy msgid "Unknown page" -msgstr "Njeznaty" +msgstr "Njeznata strona" #. TRANS: Error message displayed when trying to perform an undefined action. #. TRANS: Title for password recovery page when an unknown action has been specified. @@ -95,9 +94,8 @@ msgid "Closed" msgstr "Začinjeny" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Přistupne nastajenja składować" +msgstr "Přistupne nastajenja składować." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -150,9 +148,8 @@ msgstr "Profil njeeksistuje." #. TRANS: Client error displayed trying to reference a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to reference a non-existing list. -#, fuzzy msgid "No such list." -msgstr "Taflička njeeksistuje." +msgstr "Lisćina njeeksistuje." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a username. @@ -169,10 +166,9 @@ msgid "" msgstr "" #. TRANS: Title after adding a user to a list. -#, fuzzy msgctxt "TITLE" msgid "Listed" -msgstr "Licenca" +msgstr "Nalistowany" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) @@ -230,9 +226,8 @@ msgid "No such user." msgstr "Wužiwar njeeksistuje" #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Druhdy" +msgstr "Swójska časowa lajsta" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. @@ -243,9 +238,9 @@ msgstr "" #. 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 "Kanal za přećelow wužiwarja %s (Atom)" +msgstr "Kanal za přećelow wužiwarja %s (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -300,10 +295,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 "Přeprošenja" +msgstr "Přeprošenje pósłać" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -425,17 +419,15 @@ msgid "Unblock user failed." msgstr "Wotblokowanje wužiwarja je so njeporadźiło." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Konwersacija" +msgstr "Žadyn konwersaciski 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 "Konwersacija" +msgstr "Žana konwersacija z ID %d." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Konwersacija" @@ -750,9 +742,8 @@ msgstr "Alias njemóže samsne kaž přimjeno być." #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to perform an action related to a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy msgid "List not found." -msgstr "Wužiwar njenamakany." +msgstr "Lisćina njenamakana." #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." @@ -770,42 +761,36 @@ msgid "You cannot delete lists that do not belong to you." msgstr "" #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." -msgstr "Wužiwar njeje čłon skupiny." +msgstr "Podaty wužiwar njeje čłon tuteje lisćiny." #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "Njesměš skupiny na tutym sydle zhašeć." +msgstr "Njesměš tutej lisćinje čłonow přidać." #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "Falowacy profil." +msgstr "Dyrbiš čłon podać." #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "Njesměš skupiny na tutym sydle zhašeć." +msgstr "Njesměš čłonow z tuteje lisćiny wotstronić." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." msgstr "" #. TRANS: Client error displayed when trying to create a list without a name. -#, fuzzy msgid "A list must have a name." -msgstr "Póst za Atom dyrbi zapisk z Atoma być." +msgstr "Lisćina dyrbi mjeno měć." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." msgstr "" #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "Njejsy tón profil abonował." +msgstr "Njejsy tutu lisćinu abonował." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -1054,9 +1039,9 @@ msgstr "Aktualizacije z %1$s wot %2$s / %3$s faworizowane" #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for list - %s" -msgstr "Njeje móžno było, přizjewjenske znamješko za %s wutworić" +msgstr "Njeje móžno było, kanal za tutu lisćinu wutworić - %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. @@ -1093,9 +1078,9 @@ msgstr "Do %s wospjetowany" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "Aktualizacije z %1$s wot %2$s / %3$s faworizowane" +msgstr "%1$s - zdźělenki, kotrež su so na %2$s / %3$s wospjetowali" #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -1105,9 +1090,9 @@ msgstr "Wospjetowanja wot %s" #. TRANS: Subtitle of API time with retweets of me. #. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "%1$s je zdźělenku %2$s jako faworit markěrował." +msgstr "%1$s - zdźělenki, kotrež %2$s / %3$s je wospjetował." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1221,9 +1206,8 @@ msgstr "Žane přimjeno abo žadyn ID." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Njepřizjewjeny." +msgstr "Dyrbiš přizjewjeny być." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without @@ -1233,17 +1217,16 @@ msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. -#, fuzzy msgid "Must specify a profile." -msgstr "Falowacy profil." +msgstr "Dyrbiš profil podać." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. #. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Lisćina wužiwarjow w tutej skupinje." +msgstr "%s w moderaciskej lisćinje za tutu skupinu njeje." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 441318e68b..5252d5643c 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" @@ -2427,7 +2427,6 @@ msgstr "Nincs bejövő e-mail cím." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. -#, fuzzy msgid "Could not update user record." msgstr "Nem sikerült frissíteni a felhasználó rekordját." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 05d0a472cb..8cb75cc310 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" @@ -5328,15 +5328,15 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool." msgstr "" "**%s** ha un conto in %%%%site.name%%%%, un servicio de [micro-blogging]" -"(http://en.wikipedia.org/wiki/Microblog) a base del software libere " -"[StatusNet](http://status.net/). " +"(http://ia.wikipedia.org/wiki/Microblog) a base del software libere " +"[StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -6182,7 +6182,6 @@ 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 " @@ -6192,10 +6191,9 @@ 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 " "Free Software Foundation, o version 3 de iste licentia, o (a vostre " -"election) omne version plus recente. " +"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 " @@ -6205,7 +6203,7 @@ 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 " "USABILITATE PRO UN PARTICULAR SCOPO. Vide le GNU Affero General Public " -"License pro ulterior detalios. " +"License pro ulterior detalios." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 68d63111a1..61f3fb25b1 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: it\n" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 3c2efac940..27e3b0803e 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" @@ -1959,7 +1959,7 @@ msgstr "はじめに" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" -msgstr "" +msgstr "解説" msgid "About this site" msgstr "このサイトについて" @@ -3863,7 +3863,7 @@ msgstr "パブリックのタグを表示する。" #. TRANS: Submit button text on gallery action page. msgctxt "BUTTON" msgid "Go" -msgstr "" +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). diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 8627263b10..dec78d19a0 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ka\n" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index c130bd7a69..13e6c97419 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 3a7a34d10e..7dd364c9c7 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" @@ -5346,15 +5346,15 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool." msgstr "" "**%s** има сметка на %%%%site.name%%%%, мрежно место за [микроблогирање]" -"(http://mk.wikipedia.org/wiki/Микроблогирање) заснована на слободната " -"програмска алатка [StatusNet](http://status.net/). " +"(http://mk.wikipedia.org/wiki/Микроблогирање) засновано на слободната " +"програмска алатка [StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -6204,30 +6204,28 @@ 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." msgstr "" -"StatusNet е слободен програм: можете да го редистрибуирате и/или менувате " +"StatusNet е слободен програм: можете да го распространувате и/или менувате " "под условите на Општата јавна лиценца ГНУ Аферо според одредбите на " -"Фондацијата за слободна програмска опрема, верзија 3 на лиценцата, или (по " -"Ваш избор) било која подоцнежна верзија. " +"Фондацијата за слободна програмска опрема, верзија 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." msgstr "" -"Овој програм е дистрибуиран со надеж дека ќе биде од корист, но БЕЗ БИЛО " +"Овој програм се распространува со надеж дека ќе биде од корист, но БЕЗ БИЛО " "КАКВА ГАРАНЦИЈА; дури и без подразбирливата гаранција за ПАЗАРНА ПРОДАЖНОСТ " -"или ПОГОДНОСТ ЗА ОПРЕДЕЛЕНА ЦЕЛ. Погледајте ја Општата јавна лиценца ГНУ " -"Аферо за повеќе подробности. " +"или ПОГОДНОСТ ЗА ОПРЕДЕЛЕНА ЦЕЛ. Погледајте ја Општата јавна лиценца ГНУ " +"Аферо за повеќе подробности." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 86d141877a..9505e3dfd9 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:12+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ml\n" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index f8dd6b7e44..1b6d52b053 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:24+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 868156a8d4..8de69aba90 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 9b26abc3bf..8abf17e158 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:26+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ 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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index c9c7d35db6..2fb69dcd0c 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,12 +19,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 2148d586a2..ef0f84ddcc 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:31+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 68eaf72112..832f920db6 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,12 +19,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" @@ -7970,7 +7970,7 @@ msgstr "Показать все группы, в которых вы наход #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Вернуться вверх" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -9544,10 +9544,9 @@ msgstr[1] "Это нравится %%s." msgstr[2] "Это нравится %%s." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "Вы уже повторили эту запись." +msgstr "Повторите это." #. 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. diff --git a/locale/statusnet.pot b/locale/statusnet.pot index f4b58c0ddd..43e239297b 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 8d7ff31c1a..b49c7f2780 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 1d83434dc2..fcc1c09715 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:37+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index ec4dbbc9a6..a1d2555322 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 4cd9a037e5..836f42ddab 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 7bb82801cd..24bc292aa2 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,13 +18,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:42+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 719b908d8e..db59a4ac8d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 5f7194e3de..dc01740497 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:34+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index d5834616b2..e07bb60c30 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index f2461eec16..9b6a615459 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index 1f3d0505ef..91236152f3 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 954baf83bd..f0f967ac7e 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 51463b9c32..bf96d0cab9 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 241a0a4516..9c34385c86 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 802ced65a5..0666987de1 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index f2b381a728..0549baabd1 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index 38226e3747..c9719f7f5c 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index 331a52e812..9f9023205f 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po index b820395335..7c7e2fd420 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index e15c8d2ccd..6644460e8d 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 984ab4f292..a22c95d669 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 9abd71f815..48493f6ada 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 0e6c00f3da..2bb3c52319 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index de5916c7ae..fbceb1738e 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 0055bba4b2..e6587fef75 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index cd21c951a6..258b719ef8 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 1a7ffee35f..2ae65cd5b2 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index d4cc7f0870..aa11f84f84 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 5ec5f353c1..2ce68edd24 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 5f9cc3ceb7..b1b60da170 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:15+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 0d36cf6891..1655955e15 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:16+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index d23679a60b..d01eb8e0ad 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index e53667ebb0..37a1a9d00d 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..2d76c495a5 --- /dev/null +++ b/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - AccountManager to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-accountmanager\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Account Manager plugin implements the Account Manager specification." +msgstr "" +"El plugin Account Manager implementa la especificación de la cuenta " +"Administrador." diff --git a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po index fcbaa0d56f..a0e07f6ea2 100644 --- a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:16+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 274f6cd7a5..f63dd03b1e 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index 9d6c3c6360..dcd998e2fd 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po index 6ca08745c0..b45ea4f934 100644 --- a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 5b2af0f498..e74a7b4f15 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 8131511e93..44fd9be669 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po index 80c796323f..860022797c 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:17+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index 1eb7ebda72..5325ad60bb 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index 773eef56c2..43d744924b 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index a85841d139..5be07d0824 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index a877755034..8da244c330 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index fc7e7675d8..1f936f9379 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 4f82b62870..61b5fdc8ca 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index cc76a63bef..df3b6313d2 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Activity/locale/Activity.pot b/plugins/Activity/locale/Activity.pot index 70a3e9fc86..6cf724b342 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 index 784f8abe02..cd10ba5bc0 100644 --- a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index 868956b055..68946047bd 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:20+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-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index 0184f9e27e..681bfa938c 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Activity/locale/es/LC_MESSAGES/Activity.po b/plugins/Activity/locale/es/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..0ae9da68a4 --- /dev/null +++ b/plugins/Activity/locale/es/LC_MESSAGES/Activity.po @@ -0,0 +1,119 @@ +# Translation of StatusNet - Activity to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 se unió al grupo %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 empieza 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, +#. 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) empieza a seguir %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 deja de seguir %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) deja de seguir %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 le gusta %4$s's actualizaciones." + +#. 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) le gusta el estado de %3$s'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 deja de seguir las actualizaciones de %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 ) dejó de seguir el estado de %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 ) se unió al grupo %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 deja al grupo %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 ) deja al grupo %3$s ( %4$s )." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "Emite mensajes cuando se producen actividades sociales." diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po index 5a1e22c806..ea7de3e042 100644 --- a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:20+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po index c8b3430832..16ce3f9c87 100644 --- a/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index 9e41643a86..c56bfc2234 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index 1ad50eb8e6..5c74a071bd 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index 8015cbf599..f21bf4aad2 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index 2b0c273fa5..4f66a65457 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 24a7ab107a..3272a54ff8 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 ccca4b64a3..799d9e0cc4 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:22+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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index c32bd122c0..974a7de8f5 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index 4160896f55..d9b6b7e035 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index bdf598e183..1db4be7ff3 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 811d113ee1..b569702274 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Adsense to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -27,7 +28,6 @@ msgid "AdSense configuration" msgstr "Configuración de \"AdSense\"" #. TRANS: Menu item for site administration -#, fuzzy msgctxt "MENU" msgid "AdSense" msgstr "AdSense" @@ -50,7 +50,6 @@ msgid "Client ID" msgstr "ID de cliente" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Google client ID." msgstr "ID de cliente de Google" @@ -59,7 +58,6 @@ msgid "Ad script URL" msgstr "URL del script del anuncio" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Script URL (advanced)." msgstr "URL del script (avanzado)" @@ -68,7 +66,6 @@ msgid "Medium rectangle" msgstr "Rectángulo mediano" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Medium rectangle slot code." msgstr "Código de espacio de rectángulo mediano" @@ -77,7 +74,6 @@ msgid "Rectangle" msgstr "Rectángulo" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Rectangle slot code." msgstr "Código de espacio de rectángulo" @@ -100,12 +96,10 @@ msgid "Wide skyscraper slot code." msgstr "Código de espacio de banderola rascacielos ancha" #. TRANS: Button text to save settings in AdSense administration panel. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Guardar" #. TRANS: Button title to save settings in AdSense administration panel. -#, fuzzy msgid "Save AdSense settings." -msgstr "Guardar la configuración de AdSense" +msgstr "Guardar configuración de AdSense." diff --git a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po index b5492d8ca6..a0b03b4c2c 100644 --- a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 4ce6d7a4f7..02a1b27818 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index 27d30bde7e..ad8c5aaa55 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 3279f58cb4..aabb3752c5 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index fb59098e37..0dab3c9f05 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: it\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index d8bfa3e498..389ed49443 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ka\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index ed091dc0c7..e06a63a40a 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po index 3508bc4e1f..52339b44c9 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:25+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index e01a7ee879..cf70d6ebed 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index ed1754b33b..1080213945 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 83b8cde35c..19e6120205 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index a68b7839f0..264c91c463 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index f6aa74b6e3..1d43092425 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index bf1f491ba4..5ac8945287 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index 1362868ebb..bb20c17761 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 8216363ef3..0815d73f23 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index f5ec101ade..9776566a4e 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index 7cba41d9af..21b897ed2e 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 59198a21ae..d4f3d6e6f5 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index 7f323cb982..18c8d53e48 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index d440a8e550..34fa8b51d4 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po index dc799d378d..b95d768ac9 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Aim to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Od1n # Author: Plaxed # -- @@ -10,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -25,7 +26,7 @@ msgstr "" #. TRANS: No idea what the use case for this message is. msgid "Send me a message to post a notice" -msgstr "" +msgstr "Enviarme un mensaje para publicar un aviso" #. TRANS: Display name. msgid "AIM" @@ -43,3 +44,5 @@ msgstr "Debe especificar una contraseña." msgid "" "The AIM plugin allows users to send and receive notices over the AIM network." msgstr "" +"El plugin AIM permite a los usuarios enviar y recibir mensajes de una red " +"AIM." diff --git a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po index fb0e06f7a2..7c86ab1cdb 100644 --- a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index 051b64c260..94e1d3aadf 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index 801a44d78d..86c288266c 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po index 95c26d63ff..fbdcdd607f 100644 --- a/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index 4b82343d1c..589703f2be 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index e9d9c20f7e..e56954280e 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po index 6725a7de51..c43ab1e39e 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 89787b6742..e6a4611ddf 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index d6a1cb4469..8135074eb9 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index f3c219c86c..f8c6bd28ba 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 09316fe55a..160efc9114 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 505650e126..07fb1cdd67 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 71e686df46..0f22ab7185 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 6621b85306..1e11a27951 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 091cdb1ed8..08df762bd8 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:31+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index 0836e49cce..84bcbd7fd6 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index 2af3cf69e3..fe01f04c86 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index fb037990da..7294c1fb6a 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 7407ddc74e..f4d47ba3f5 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -1,6 +1,7 @@ # Translation of StatusNet - AnonymousFave to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Locos epraix # Author: Translationista # -- @@ -10,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -25,13 +26,13 @@ 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 "No se pudo actualizar el la cuenta favorita para el mensaje de ID %d." +msgstr "No se pudo actualizar la cuenta favorita para el mensaje de 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 "No se pudo crear una cuenta favorita para el mensaje de ID %d." @@ -64,9 +65,8 @@ msgid "Favored" msgstr "Favorito" #. TRANS: Server exception. -#, fuzzy msgid "Could not create anonymous user session." -msgstr "No se pudo crear sesión de usuario anónimo." +msgstr "No se pudo crear la sesión de usuario anónimo." #. TRANS: Plugin description. msgid "Allow anonymous users to favorite notices." diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 3a981e6cbd..008965362e 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index df06ae6653..46c3fc7128 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 959b187bd1..bb80190f80 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 9e988b69a5..e250097ae1 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index b9ac722c24..1267362a05 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index e4e3c85331..36993630e8 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 181fa64eeb..dcc0cdb335 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 8165b7a4c2..8f3e20f2f8 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index 424f0325c7..ed0bab6c4d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 c960f41c9d..2a56fa7745 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:37+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index 446291f515..b428216615 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po new file mode 100644 index 0000000000..f90a23ca26 --- /dev/null +++ b/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - ApiLogger to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-apilogger\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Allows random sampling of API requests." +msgstr "Permite un muestreo aleatorio de las solicitudes de API." diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index 8fd81bce3d..9a007beb4a 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po index a1f624e936..b5f2b07743 100644 --- a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index 5556dbbc35..e4c350f1eb 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index ecaf2c8574..bf1e7ed390 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index 3c060f59d6..bdb12d4f6b 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:38+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index d74fa95dd6..1329d5d6f2 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po index a6abb2ad30..3b225ace2a 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index 88214ac489..e09a3eb7be 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index d4a09eb9f7..0b76f17478 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po index 1b94dc17d4..1699652d87 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index 861fb369dd..5ecc27508a 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index c874d5e64d..c05bd3128e 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 b138a3d531..c2a6376d31 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:41+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index df1a9d77f1..72b51ef7d0 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 8420980512..ab3c3bd6b2 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index b0f165f569..40b5312c65 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -1,6 +1,7 @@ # Translation of StatusNet - AutoSandbox to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:41+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -37,12 +38,12 @@ msgstr "" #. TRANS: User instructions after registration. #. TRANS: %s is a clickable e-mailaddress. -#, fuzzy, php-format +#, php-format msgid "" "Note you will initially be \"sandboxed\" so your posts will not appear in " "the public timeline. Send a message to %s to speed up the unsandboxing " "process." msgstr "" "Ten en cuenta que inicialmente serás enviado a la zona de pruebas, así que " -"tus mensajes no aparecerán en la línea temporal pública. Envía un mensaje a " -"$contactlink para acelerar el proceso de exclusión de la zona de pruebas." +"tus mensajes no aparecerán en la línea temporal pública. Envía un mensaje a %" +"s para acelerar el proceso de exclusión de la zona de pruebas." diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 39f98a187d..01cf38080d 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po index 99398de022..c81db16f26 100644 --- a/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index ba921ccb15..ede75e17e3 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 87b55e1eb9..206b0aff55 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 3f0bc8d5bd..b24d1798e3 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index f4481ad914..5b0061abf7 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 9278bc7917..08091c2d60 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 8ac714bd06..533e71a86c 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index 07d2be274a..2844df492a 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 3401864501..10fe013ec2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 23f8751311..9daf03c868 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:39+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index 2c4f7365d7..29782bed55 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index 29599689cc..8f78fdd393 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index 495e472f37..1de7cee607 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 1a77011a95..f35ce79940 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Autocomplete to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Od1n # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -24,7 +25,7 @@ msgstr "" #. TRANS: Plugin description. msgid "The autocomplete plugin adds autocompletion for @ replies." -msgstr "" +msgstr "El plugin de Autocompletar agrega autocompletado para @ respuestas." #. TRANS: Client exception in autocomplete plugin. msgid "Access forbidden." diff --git a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po index 8a9a42944a..17e4ac7be7 100644 --- a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:39+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 30d95c40e7..e217adf264 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po index 6a6d9930df..a988f23e06 100644 --- a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 3d99218e4c..80cb43351b 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 80a62a60f4..780c6cae77 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index 5cfd443680..01b30cc46a 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po index c72833e6b5..0cf0a9269c 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index ce7f736fdb..154c27ae5d 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po index a85624293d..855e8b95bb 100644 --- a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index 5039a6a6cb..299da86976 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 071c4ab00a..793eee6b6c 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 817d24bddd..32ded75ff2 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index 0f8a2a071b..fa15527835 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 9485be5955..3fbaca9a33 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:43+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index f578f0ef1d..3ab386d9f6 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po new file mode 100644 index 0000000000..5c633ed85e --- /dev/null +++ b/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Awesomeness to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "" +"El plugin Awsomeness añade información adicional a una instalación StatusNet." diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index 9802873583..444e957ea8 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 891325a62c..8774a0c62f 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po index c8e15d8313..fdbd414d37 100644 --- a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 4782343f9c..9732dbcfcb 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 45a710f8d5..8f4c79603d 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index c5b7ede132..6818bd2e95 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index 8606977cff..dfd7e85a91 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index ed6182e95c..3276d526f6 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index 523f382526..4a7a24c76a 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po index 354a207a26..0f9903c1cb 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 52a6cf2d19..6321990723 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index cddd678a15..ed48620f72 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 35760986c4..453e395651 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:46+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index 9eaf4ad3c2..b697c4e525 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:46+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index cf911a3c9b..924a5b28f0 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po index e1cad4db23..7b54a62f69 100644 --- a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -1,6 +1,9 @@ # Translation of StatusNet - BitlyUrl to Spanish (Español) -# Expored from translatewiki.net +# Exported from translatewiki.net # +# Author: Erchache2000 +# Author: Od1n +# Author: Plaxed # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,72 +12,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:48 -#, fuzzy -msgid "You must specify a serviceUrl for bit.ly shortening." -msgstr "Debes especificar un serviceUrl." - -#: BitlyUrlPlugin.php:171 -#, php-format -msgid "Uses %1$s URL-shortener service." -msgstr "" -"Utiliza el servicio de acortamiento de URL %1$s." - -#: BitlyUrlPlugin.php:212 -msgid "bit.ly" -msgstr "" - -#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +#. TRANS: Title of administration panel. msgid "bit.ly URL shortening" -msgstr "" +msgstr "acortamiento de URL bit.ly" -#: bitlyadminpanelaction.php:65 +#. TRANS: Instructions for administration panel. +#. TRANS: This message contains Markdown links in the form [decsription](link). msgid "" "URL shortening with bit.ly requires [a bit.ly account and API key](http://" "bit.ly/a/your_api_key). This verifies that this is an authorized account, " "and allow you to use bit.ly's tracking features and custom domains." msgstr "" +"URL acortado con bit.ly requiere [cuenta bit.ly y API key](http://bit.ly/a/" +"your_api_key). Esto comprueba que tiene una cuenta autorizada y permite " +"utilizar funciones de seguimiento y dominios personalizados de bit.ly." -#: bitlyadminpanelaction.php:132 -msgid "Invalid login. Max length is 255 characters." -msgstr "" +#. TRANS: Client error displayed when using too long a key. +msgid "Invalid login. Maximum length is 255 characters." +msgstr "Acceso invalido. La longitud máxima es de 255 caracteres." -#: bitlyadminpanelaction.php:138 -msgid "Invalid API key. Max length is 255 characters." -msgstr "" +#. TRANS: Client error displayed when using too long a key. +msgid "Invalid API key. Maximum length is 255 characters." +msgstr "Clave de API no válida. Longitud máxima es de 255 caracteres." -#: bitlyadminpanelaction.php:191 +#. TRANS: Fieldset legend in administration panel for bit.ly username and API key. +msgctxt "LEGEND" msgid "Credentials" -msgstr "" +msgstr "Credenciales" -#: bitlyadminpanelaction.php:199 +#. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "Leave these empty to use global default credentials." -msgstr "" +msgstr "Dejelo vacío para usar las credenciales globales por defecto." -#: bitlyadminpanelaction.php:202 +#. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "If you leave these empty, bit.ly will be unavailable to users." -msgstr "" +msgstr "Si se deja vacío, bit.ly no estarán disponibles para los usuarios." -#: bitlyadminpanelaction.php:209 +#. TRANS: Field label in administration panel for bit.ly URL shortening. msgid "Login name" -msgstr "" +msgstr "Nombre de usuario" -#: bitlyadminpanelaction.php:218 +#. TRANS: Field label in administration panel for bit.ly URL shortening. msgid "API key" -msgstr "" +msgstr "API key" -#: bitlyadminpanelaction.php:236 +#. TRANS: Button text to save setting in administration panel for bit.ly URL shortening. +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: Button title to save setting in administration panel for bit.ly URL shortening. msgid "Save bit.ly settings" +msgstr "Guardar configuración de 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 URL bit.ly" + +#. 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 "" +"Utiliza el servicio de acortamiento de URL %1$s." + +#. TRANS: Menu item in administration menus for bit.ly URL shortening settings. +msgid "bit.ly" +msgstr "bit.ly" + +#. TRANS: Title for menu item in administration menus for bit.ly URL shortening settings. +msgid "bit.ly URL shortening." +msgstr "acortamiento de URL bit.ly." diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 9ecf9c7367..a1857cedc9 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index 6a41c40e02..59aaa89788 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:46+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index b3815207c1..9c931e47bb 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 674df9dc40..1b6202f473 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 29ab0ed0ea..7628fdb4d0 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 6face8efe8..345b332f15 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index a5ab0346fd..88211fa299 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index c399d54e4e..f7e606e185 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" @@ -52,7 +52,6 @@ msgid "Invalid API key. Maximum length is 255 characters." msgstr "Неверный ключ API. Максимальная длина составляет 255 символов." #. TRANS: Fieldset legend in administration panel for bit.ly username and API key. -#, fuzzy msgctxt "LEGEND" msgid "Credentials" msgstr "Полномочия" diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index 1372782e03..f60fdeb1bd 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:47+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index d07c43420e..a1b52bef8c 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 4d592047ff..b8dda483c2 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 48fd0da442..37e4fa8284 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 b7b5cd4b97..de6105e61f 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:49+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index 486f6deef6..ea4ab3fab4 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index 71f3e379e0..ba27240a4e 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index c8e7e0682c..b7d4108386 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Blacklist to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Peter17 # Author: Translationista # -- @@ -10,39 +11,42 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" -"PO-Revision-Date: 2011-04-09 18:36:39+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06: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:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown if the Blacklist plugin configuration is incorrect. +#. TRANS: %1$s is a configuration section, %2$s is a configuration setting. #, php-format msgid "Unknown data type for config %1$s + %2$s." -msgstr "" +msgstr "Tipo de datos desconocidos para config %1$s + %2$s ." #. TRANS: Validation failure for URL. %s is the URL. -#, fuzzy, php-format +#, php-format msgid "You may not register with homepage \"%s\"." -msgstr "No puedes registrarte con la página principal '%s'." +msgstr "No puedes registrate con la página de inicio \"%s\"." #. TRANS: Validation failure for nickname. %s is the nickname. -#, fuzzy, php-format +#, php-format msgid "You may not register with nickname \"%s\"." msgstr "No puedes registrarte con el nombre de usuario '%s'." #. TRANS: Validation failure for URL. %s is the URL. -#, fuzzy, php-format +#, php-format msgid "You may not use homepage \"%s\"." msgstr "No puedes utilizar la página de inicio '%s'." #. TRANS: Validation failure for nickname. %s is the nickname. -#, fuzzy, php-format +#, php-format msgid "You may not use nickname \"%s\"." msgstr "No puedes utilizar el nombre de usuario '%s'." @@ -57,16 +61,14 @@ msgstr "" "Mantiene una lista negra de patrones de nombres de usuario y URL prohibidos." #. TRANS: Menu item in admin panel. -#, fuzzy msgctxt "MENU" msgid "Blacklist" msgstr "Lista negra" #. TRANS: Tooltip for menu item in admin panel. -#, fuzzy msgctxt "TOOLTIP" msgid "Blacklist configuration." -msgstr "Configuración de lista negra" +msgstr "Configuración de la lista negra." #. TRANS: Checkbox label in the blacklist user form. msgid "Add this nickname pattern to blacklist" @@ -80,20 +82,19 @@ msgstr "Añadir este patrón de página principal a la lista negra" #. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. #, php-format msgid "Users from \"%s\" are blocked." -msgstr "" +msgstr "Los usuarios de \" %s \" están bloqueados." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. #, php-format msgid "Notices from nickname \"%s\" disallowed." -msgstr "" +msgstr "Noticias del usuario \" %s \" no estan permitidas." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. -#, fuzzy, php-format +#, php-format msgid "Cannot subscribe to nickname \"%s\"." -msgstr "No puedes utilizar el nombre de usuario '%s'." +msgstr "No es posible suscribirse al usuario \" %s \"." #. TRANS: Title of blacklist plugin administration panel. -#, fuzzy msgctxt "TITLE" msgid "Blacklist" msgstr "Lista negra" @@ -107,7 +108,6 @@ msgid "Nicknames" msgstr "Nombres de usuario" #. TRANS: Field title in blacklist plugin administration panel. -#, fuzzy msgid "Patterns of nicknames to block, one per line." msgstr "Patrones de nombres de usuario a bloquear, uno por línea" @@ -116,17 +116,14 @@ msgid "URLs" msgstr "URLs" #. TRANS: Field title in blacklist plugin administration panel. -#, fuzzy msgid "Patterns of URLs to block, one per line." msgstr "Patrones de URL a bloquear, uno por línea" #. TRANS: Button text in blacklist plugin administration panel to save settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Guardar" #. TRANS: Button title in blacklist plugin administration panel to save settings. -#, fuzzy msgid "Save site settings." -msgstr "Guardar la configuración del sitio" +msgstr "Guardar la configuración del sitio." diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index ef08793e2b..3709050328 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index bd0fb1b400..dda7803e03 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 186b92277a..93d3feab44 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index a24d82cd3e..c7c69d60f4 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 30ec598705..08b51e4a67 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index 34b23b7405..731e169ca5 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" @@ -95,7 +95,6 @@ msgid "Cannot subscribe to nickname \"%s\"." msgstr "Нельзя подписаться на пользователя с именем «%s»." #. TRANS: Title of blacklist plugin administration panel. -#, fuzzy msgctxt "TITLE" msgid "Blacklist" msgstr "Чёрный список" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 8cbdbeade6..b73c66a3a2 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index ba068cc9dc..b813814ddb 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index ecfe8a0a8f..a72c2da650 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 1d45616500..aef0b9621c 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 592e143c80..51536641a2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 7c37775370..c43f862cc1 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:52+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 2ed2eeefe8..3e897d4cdd 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:52+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 1e38151440..90aa85a7ed 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index 265cfebf2f..b94939ab32 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index e8db1d1389..cbd661a35f 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 3481e3573c..0041b6c7c7 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:52+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 018de83d1e..479827165f 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po index 38953aaef9..b98b82546e 100644 --- a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 80dfacfef9..aa7bcd78e9 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index 5ff42599af..bbe85e2604 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index e35ea8a03b..3aff083a99 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 00cb5de246..fee40c4636 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index ad2888765a..567c8268eb 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 3b106d7db6..368fbb64ac 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index ff5e3fc047..8055145852 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index 5609dc433d..9e9d0e8866 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index efe7dc7966..fa23cf51c8 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index c1e9e7ec11..790eb6ca2a 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index 0c58892037..e02352714d 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Blog/locale/Blog.pot b/plugins/Blog/locale/Blog.pot index 676dbf9bce..8d9623d696 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 985a4edf48..4c31268e05 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po index 6aebe1a68d..85f9a49101 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index d1aeec93c3..cff7c109f1 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index af400f0013..8f9bd375f3 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Blog/locale/es/LC_MESSAGES/Blog.po b/plugins/Blog/locale/es/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..6c22c394e5 --- /dev/null +++ b/plugins/Blog/locale/es/LC_MESSAGES/Blog.po @@ -0,0 +1,97 @@ +# Translation of StatusNet - Blog to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "Debe haber iniciado sesión para publicar una entrada de blog." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing a title. +msgid "Title required." +msgstr "Título requerido." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "Contenido requerido." + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "Entrada de blog guardada" + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "" +"Permiten a los usuarios escribir y compartir formulario con texto largo." + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "Blog" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Demasiados objetos de actividad." + +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. +msgid "Wrong type for object." +msgstr "Tipo incorrecto para el objeto." + +#. TRANS: Exception thrown when blog plugin comes across a undefined verb. +msgid "Unknown verb for blog entries." +msgstr "Verbo desconocido para las entradas de blog." + +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "Ninguna entrada de blog de notificación %s ." + +#. TRANS: Client exception thrown when referring to a non-existing blog entry. +msgid "No such entry." +msgstr "No hay tal entrada." + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "Sin 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 "Título de la entrada de blog." + +#. 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 "Texto de la entrada de blog." + +#. TRANS: Button text to save a blog entry. +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" diff --git a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po index d5f59a98b5..78b5ae9f28 100644 --- a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:57+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po index b864cc997d..c00a8249cd 100644 --- a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po index 103bda8d1a..69a7c00b67 100644 --- a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 7a05fc012c..4f5df94c12 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index 84a7789480..59d2fe8a7c 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index 985b217e58..de5309ebc0 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..a5105ad5c7 --- /dev/null +++ b/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blog to Turkish (Türkçe) +# Exported from translatewiki.net +# +# Author: Emperyan +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-blog\n" +"Plural-Forms: nplurals=1; plural=0;\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 "Başlık gerekli." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "İçerik gerekli." + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "Günce girdisini kaydedildi." + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "" + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "Günce" + +#. 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 "Günce girişleri için bilinmeyen bir eylem." + +#. 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 "Böyle bir girdi yok." + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "Başlıksız" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Title" +msgstr "Başlık" + +#. 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 "Metin" + +#. 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 "Kaydet" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 42f79177fb..7a634159ea 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 d3db6317a3..7f94bb70ad 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 38e6c908d8..91473d625c 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - BlogspamNet to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" -"PO-Revision-Date: 2011-04-09 18:36:41+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-04-03 13:40:22+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:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -25,19 +27,19 @@ msgstr "" #. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no period). #, php-format msgid "Error from %1$s: %2$s" -msgstr "" +msgstr "Error de %1$s: %2$s" #. TRANS: Server exception thrown when blogspam.net returns spam status. #. TRANS: Does not end with period because of unknown contents for %s (spam match). #, php-format msgid "Spam checker results: %s" -msgstr "" +msgstr "Resultados de comprobador de spam:%s" #. TRANS: Server exception thrown when blogspam.net returns an unexpected status. #. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no period). #, php-format msgid "Unexpected response from %1$s: %2$s" -msgstr "" +msgstr "Respuesta inesperada de %1$s :%2$s" #. TRANS: Plugin description. msgid "Plugin to check submitted notices with blogspam.net." diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 0438d23106..2fbc61de58 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po index 6150efb881..927a580059 100644 --- a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 8bcdf5758d..aae7b160c8 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 6ba72fdc79..c92d0e1f83 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 1965cb11b6..451507da9c 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 58683586ea..f417bd3d30 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:01: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index 6f3a1a6f93..a69aedaf3e 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 9ffc13276a..53ea246483 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 18fc64fbce..87e537dfa7 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 01eccead20..c49eb6b710 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index dff1db6dac..91ed7d9ed8 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index 9a96834af5..ad1dc798c3 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 09d908b42a..2c91cbe463 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:43:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..474f0df41d --- /dev/null +++ b/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po @@ -0,0 +1,270 @@ +# Translation of StatusNet - Bookmark to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# Author: Fitoschido +# Author: Od1n +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "No hay etiqueta en un
." + +#. TRANS: Client exception thrown when a bookmark in an import file is private. +msgid "Skipping private bookmark." +msgstr "Se omitirá el marcador privado." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "No hay tal marcador." + +#. 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 "Marcador de %1$s para \" %2$s \"" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting bookmarks." +msgstr "Extensión simple para soporte de marcadores." + +#. 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 "Importar favoritos de del.icio.us" + +#. TRANS: Client exception thrown when a bookmark is formatted incorrectly. +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "Se espera exáctamente 1 link rel=related en el marcador." + +#. TRANS: Server exception thrown when a bookmark has multiple attachments. +msgid "Bookmark notice with the wrong number of attachments." +msgstr "Aviso de marcardor con un número incorrecto de datos adjuntos." + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Bookmark" +msgstr "Marcador" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "Bookmark on %s" +msgstr "Marcador en %s" + +#. TRANS: Client exception thrown when trying to save a new bookmark that already exists. +msgid "Bookmark already exists." +msgstr "Ya existe el marcador." + +#. 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 "Añadir" + +#. TRANS: Client exception thrown when an unknown URL is provided. +msgid "Unknown URL." +msgstr "URL desconocida." + +#. 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 "Mensajes enlazados a %s" + +#. 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 "Mensajes enlazados a %1$s, página %2$d" + +#. TRANS: Client exception thrown when trying to import bookmarks without being logged in. +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" +"Sólo usuarios registrados pueden importar copias de seguridad de del.icio.us." + +#. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. +msgid "You may not restore your account." +msgstr "No se puede restaurar tu cuenta." + +#. 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 "Ningún archivo cargado." + +#. 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 archivo subido sobrepasa la directiva upload_max_filesize en 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 archivo subido sobrepasa la directiva MAX_FILE_SIZE que se especificó en " +"el formulario HTML." + +#. TRANS: Client exception thrown when a file was only partially uploaded. +msgid "The uploaded file was only partially uploaded." +msgstr "El archivo subido sólo fue parcialmente subido." + +#. TRANS: Client exception thrown when a temporary folder is not present. +msgid "Missing a temporary folder." +msgstr "Falta una carpeta temporal." + +#. TRANS: Client exception thrown when writing to disk is not possible. +msgid "Failed to write file to disk." +msgstr "No se pudo escribir el archivo en el disco." + +#. TRANS: Client exception thrown when a file upload has been stopped. +msgid "File upload stopped by extension." +msgstr "La subida de archivos se detuvo por una extensión." + +#. TRANS: Client exception thrown when a file upload operation has failed. +msgid "System error uploading file." +msgstr "Error del sistema al subir el archivo" + +#. 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 "No hay tal archivo \" %s \"." + +#. 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 "No es un archivo regular: \" %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 "Archivo \" %s \" no legible." + +#. TRANS: Success message after importing bookmarks. +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"Marcadores han sido importados. Tus marcadores deben aparecer ahora en la " +"búsqueda y la página de perfil." + +#. TRANS: Busy message for importing bookmarks. +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" +"Los marcadores se están importando. Por favor, espere unos minutos para " +"obtener los resultados." + +#. TRANS: Form instructions for importing bookmarks. +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" +"Puede cargar una copia de seguridad del archivo de marcadores de delicious." +"com." + +#. TRANS: Button text on form to import bookmarks. +msgctxt "BUTTON" +msgid "Upload" +msgstr "Subir" + +#. TRANS: Button title on form to import bookmarks. +msgid "Upload the file." +msgstr "Subir este archivo" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Title" +msgstr "Título" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Notes" +msgstr "Notas" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Field title on form for adding a new bookmark. +msgid "Comma- or space-separated list of tags." +msgstr "Lista de etiquetas, separada por comas o espacio." + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: Title for action to create a new bookmark. +msgid "New bookmark" +msgstr "Marcador nuevo" + +#. 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 "Debe haber iniciado sesión publicar un marcador." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a title. +msgid "Bookmark must have a title." +msgstr "Marcador debe tener un título." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a URL. +msgid "Bookmark must have an URL." +msgstr "Marcador debe tener una dirección URL." + +#. TRANS: Page title after posting a bookmark. +msgid "Bookmark posted" +msgstr "Marcador publicado" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "Obtener copia de seguridad del archivo \" %s \"." diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po index ca3fdce865..a73434f7d7 100644 --- a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index f0bcf22370..2c6e2fc6e8 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po index fa514fe82d..546bac1c86 100644 --- a/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 8852e8651c..a1fcfee75b 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 64f666dd1b..8d99c98a08 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 9effba9439..3694e2fedc 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index 3227cc45d8..b150f788ce 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index df3165cf7c..54ce325368 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index 1b210bf471..50cb2b9a61 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 815b0aa36b..eb3c1b8e9a 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 9c4281acba..70a5cf95d4 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 1c3f2e8e36..78b7d2ee02 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 0ac1293209..ea3a0e47bd 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index 272f9f1a89..836a5effe4 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index 8cf6164002..729dcdf3e8 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index 5191f9f9a5..beefca332b 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 5edf6264c5..2033ab4a28 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po index c2ea124e9b..24fdeb63bb 100644 --- a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 9a1ca44c4e..a9c8df3a79 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index ca2b2fd1fc..54b60b06ae 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index 2d7d74d025..1c279b22f0 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index b4e063b172..d2713c056c 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 3e63707fb2..259850378c 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 936fc01877..7529bf53cc 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index 0ac05f1ce8..0c2f10fc72 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index 579a0924b6..b12ec81484 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index d115abd54b..bf7c0b34ea 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 9d0d268bd5..a8077e4734 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 69066943cb..c5c8d4ff88 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 b0dfb7357f..c8100975f5 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index b2b41a0a8d..973e3eac96 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po index 45f11202af..5875602279 100644 --- a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 527d052fdc..8faed0a766 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index af8ff342cb..fe73d46c1f 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po index f604c8a9c3..3057d2278d 100644 --- a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 5f10075fe3..0a1db493d1 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po index 58a1759fd4..5ffb2e40a5 100644 --- a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index 2b59a73865..5946ab1414 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index c67634a74a..d2cd5b783b 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index c89bd0f2fa..022657eea0 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 3036129f95..bfe3980b9d 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index d5c02d512f..91de2ed935 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index f7891230e6..6b38ffe198 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 9c357f3050..397c85ed39 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 6563e30e09..161761928c 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index 2904ad1f97..dda1296277 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 80fde94082..e598db4107 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 4cfc66a158..63ead0e8b8 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index db1fa84b95..158d99a8ee 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index d74c2c34c2..9106c80f8f 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -1,6 +1,7 @@ # Translation of StatusNet - ClientSideShorten to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -32,6 +33,5 @@ msgstr "" "envíe el mensaje." #. TRANS: Client exception thrown when a text argument is not present. -#, fuzzy msgid "\"text\" argument must be specified." msgstr "Debe especificarse el argumento 'texto'." diff --git a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po index e4d77252a0..560586386b 100644 --- a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:11+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index dca8d5e5a3..c994e9368d 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po index a4f32cd7aa..7aa46c0fe2 100644 --- a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index ea3fed861f..299365ea78 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index bb686e3ac8..6bddacb954 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index 914f5e990f..ef9fc43b57 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index c00a3e9766..e74b073e8f 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index e55369ce8e..209d86829d 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index ab5d0fc1f6..8544add5d3 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index 0825df969a..341d3b634e 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index e206286c68..f5f25e246d 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 67a86dcc36..ba9a4a3de1 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 563b8151f5..00aa7772c3 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 6b5899c4aa..68d0ff55bd 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 a1470fffb7..91d12920e9 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po index f77e757f53..12f1a3c18b 100644 --- a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Comet to Spanish (Español) # Exported from translatewiki.net # +# Author: Erchache2000 # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,22 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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. -#, fuzzy msgid "Plugin to make updates using Comet and Bayeux." msgstr "" -"Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet/" +"Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet y " "Bayeux." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 1597d103df..48baa2e893 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po index 5075679af3..1d8df9d5fd 100644 --- a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index 99f622b7a0..517131feec 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index fb466028aa..e252668a16 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index 30fcdc86b0..8f91e270cd 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index e5d3b3837f..9f81291b5e 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index cc3db5d6f6..733ea1aaa1 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index c40524ac5c..8d92adf800 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index cbe6207cc6..a0f74fe27f 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 9e292ca670..5505e1fad0 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 9e1ca11281..7e7c06f3cf 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 09a4b41e07..59ecb0798f 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:16+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 80ece289e7..2ca633331f 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 1a44819134..c3f1ad4d60 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 48ff32fde4..85c8d5219f 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index da44a102ab..a37a244f95 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index fc2412f0c9..73ccda200e 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index f34c6018e3..fb5197e682 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po index bee1e8197e..0ae76b6f57 100644 --- a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 9442a81190..58464db8fa 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 4aa8018dd7..b63911d81f 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index c911ba29cc..c89a5f397e 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index e2c59927da..da08f60e75 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:18+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 39fae87ec0..6e0be1f416 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:18+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 4b083a1101..ad492907b8 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index ca007fca0f..b9707d50c4 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index f04646bb29..bd0c26824b 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-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index 999d3ce22e..02dbd68dcd 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index e6d9fa9df4..56ae9ab7e3 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 960287e374..fbf82724da 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index edfd0d0406..1b960cfe97 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index be80e26d28..f3628ed17c 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index 196aa5c93c..aab246fae6 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 dd59abeb85..21b1084b14 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index ae70ce4031..a0d1858511 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:22+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index b1964dd722..415bd37c79 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Directory/locale/es/LC_MESSAGES/Directory.po b/plugins/Directory/locale/es/LC_MESSAGES/Directory.po new file mode 100644 index 0000000000..aa84b3b5af --- /dev/null +++ b/plugins/Directory/locale/es/LC_MESSAGES/Directory.po @@ -0,0 +1,173 @@ +# Translation of StatusNet - Directory to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# Author: Od1n +# -- +# 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-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "Directorio de usuarios, página %d" + +#. TRANS: Page title for user directory. +msgid "User directory" +msgstr "Directorio de usuarios" + +#. TRANS: Page title for user directory. %s is the applied filter. +#, php-format +msgid "User directory - %s" +msgstr "Directorio de usuario - %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 "Directorio de usuario - %1$s , página %2$d" + +#. 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 "" +"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " +"los términos con espacios; deben tener una longitud mínima de 3 caracteres." + +#. TRANS: Fieldset legend. +msgid "Search site" +msgstr "Buscar en el sitio" + +#. TRANS: Field label for user directory filter. +#. TRANS: Field label for input of one or more keywords. +msgid "Keyword(s)" +msgstr "Palabra(s) clave" + +#. TRANS: Button text. +#. TRANS: Button text for searching group directory. +msgctxt "BUTTON" +msgid "Search" +msgstr "Búsqueda" + +#. TRANS: Empty list message for user directory. +#, php-format +msgid "No users starting with %s" +msgstr "Ningún usuario que comience con %s" + +#. TRANS: Empty list message for user directory. +#. TRANS: Empty list message for searching group directory. +msgid "No results." +msgstr "No hay 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 "" +"* Asegúrese de que todas las palabras estén escritas correctamente.\n" +"* Pruebe con palabras clave diferentes.\n" +"* Pruebe con palabras clave más generales.\n" +"* Pruebe con menos palabras clave." + +#. TRANS: Title for group directory page. %d is a page number. +#, php-format +msgid "Group Directory, page %d" +msgstr "Directorio de grupo, página %d" + +#. TRANS: Title for group directory page. +msgid "Group directory" +msgstr "Directorio de grupo" + +#. TRANS: Title for group directory page when it is filtered. +#. TRANS: %s is the filter string. +#, php-format +msgid "Group directory - %s" +msgstr "Directorio de grupo - %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 "Directorio de grupo - %1$s , página %2$d" + +#. 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 "" +"Después de unirte a un grupo puedes enviar mensajes a todos los otros " +"miembros usando la síntaxis \"!nombregrupo\".\n" +"\n" +"Navega por los grupos, o busca grupos por su nombre, localización o tipo. " +"Separa los términos con espacios, debe tener al menos 3 caracteres." + +#. TRANS: Link to create a new group on the group list page. +msgid "Create a new group" +msgstr "Crear un grupo nuevo" + +#. TRANS: Fieldset legend. +msgid "Search groups" +msgstr "Buscar grupos" + +#. TRANS: Empty list message for searching group directory. +#. TRANS: %s is the search string. +#, php-format +msgid "No groups starting with %s." +msgstr "No hay grupos empezando por %s ." + +#. 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 usuarios" + +#. TRANS: Plugin description. +msgid "Add a user directory." +msgstr "Agregar un directorio de usuario." + +#. TRANS: Column header in table for user nickname. +msgid "Nickname" +msgstr "Nombres de usuario" + +#. 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 "Suscripciones" + +#. TRANS: Column header for number of notices. +msgid "Notices" +msgstr "Mensajes" + +#. TRANS: Column header in table for members of a group. +msgid "Members" +msgstr "Miembros" diff --git a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po index c3d843ce0d..e6d7c9269e 100644 --- a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:22+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 36078838de..e05f3552e0 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index 1301bb2ae0..a5c86bb9d9 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po index 8a04f4e5f8..f0ec74aca5 100644 --- a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index 98cc57dfae..b34d76d27f 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po index 1177730625..6adb5f387f 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:24+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 66029dfe24..124e9818d1 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 738eb8f301..d7b42ed621 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index 1cccdaf1a7..942b77b41f 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 2f33fb0fea..a0844b65d6 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index de5929baa0..a4a91b403e 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 0ff17d5fdc..30bf8dd5ac 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 5de1a7c6ec..1dac2ee32f 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index a3b8f4f214..8f852f3f86 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index 761e1c89be..333834cfd6 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index 61e4af1fec..272ec4e444 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index d92c47a36d..75cf40b35d 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 84029f6036..8b18d5e3ad 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:26+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index add5b96848..11849b6e25 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po index cf3c06bf66..6f8b5d1aa3 100644 --- a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:26+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index e30c8fd99f..61b2de8e1c 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 5ad0762dee..5c49da0b98 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index f9306009e1..f7affbc899 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index bd3fc5e819..3c3205597b 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index 107bd3edb5..b148b28079 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 4a4298562f..9799330bd6 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 58d533691c..0d91b05594 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index 0d0783db9a..d602850940 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index e92cbdef2d..2fa4ab61e8 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index 7715d8a3f6..6e256fec98 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 0eae4e2b50..bf17b61a16 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 4a8fe915d0..792c685a98 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index dc49c1bce7..f5ff138092 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index d6ec053318..b501e1896e 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 59952a5f3e..ac735266fd 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index eb2783e98d..af66dd2c1c 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po index b72953b0e5..cb547f752d 100644 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index aa73416caa..927e780b7d 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 7f80b5e455..721d963195 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 8cdecb6e6f..56696918e2 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po index 7677115c96..7ca4f7ca8f 100644 --- a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 61e469acfc..cd12ee6110 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 92fdf13055..eea04f717a 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index a74358685f..887f6ec84f 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index b27e44d661..fda899769e 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index 9d72a334f2..0230bc2479 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 6fe0c5bdbc..c3ef435caa 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index e3dfa06ea3..e55fecf03c 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 5f427aab28..fe84686759 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index 3ba2aa9f82..7ebc313b1c 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index e90515501f..824617cd5e 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 1a32c7f8f6..3d56c3428b 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po new file mode 100644 index 0000000000..33b61b6c66 --- /dev/null +++ b/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - DomainStatusNetwork to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 plugin que asigna un solo estado de red a un dominio de correo " +"electrónico." diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index 2f9dc8d3ab..fa0d186301 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po index e151122176..9bab419a9c 100644 --- a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index 5b402b3e78..656ab571c3 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index e2e776aa70..6644e577ed 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index a0975d7b3e..7c212c2928 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po index a929022470..90d127c754 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index e49d7d4370..efbe58e412 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index efb0f43d41..942c8295a6 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index 73d017c533..b3ede7f9d5 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index 3b4f2ec77e..b621ea12eb 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 da145b876a..525719ed76 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po index 035b6439b1..f4e0743536 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 321f35bb57..a9eca5bcdd 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..74490ef0f4 --- /dev/null +++ b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,82 @@ +# Translation of StatusNet - DomainWhitelist to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# Author: Od1n +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:34+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "Dirección de correo electrónico debe estar en este dominio: %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 "Dirección de correo electrónico debe estar en este dominio: %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 "Esa dirección de correo electrónico no está permitido en este sitio." + +#. TRANS: Title for invitiation deletion dialog. +msgid "Confirmation Required" +msgstr "Confirmación requerida" + +#. TRANS: Confirmation text for invitation deletion dialog. +msgid "Really delete this invitation?" +msgstr "¿Realmente desea eliminar esta invitación?" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "Restringir los dominios para los usuarios de correo electrónico." + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "Invitar a amigos" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "Mensaje personal" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "Opcionalmente añada un mensaje personalizado a su invitación." + +#. TRANS: Link description to action to add another item to a list. +msgid "Add another item" +msgstr "Añadir otro elemento" + +#. TRANS: Send button for inviting friends. +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "Enviar invitaciones." diff --git a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po index ec51967c7e..4a0b39fedc 100644 --- a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:35+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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 28bcc83b57..92bdbe790e 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index b89b287155..ea756b2b00 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index 1f40ab68d4..105b6374a3 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index e0cf36e49e..5a57f9c76d 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index cb6e70872e..fc6fcf5c65 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index f1968ee22b..f52244ecf8 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 6998d5e099..49d765840e 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 5f6a2c871a..4a2dba1fdd 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 8ef449cc1e..ee564aec62 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index bea1396739..9ae1a6d9cf 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 544aa13aa5..ec8563a2c1 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index 5a11d99e81..ab82e6d2ce 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index ac2fb992a5..63a0e45f76 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po index 8a0cf37f07..6a50ad8fbf 100644 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 7b3c7bce50..b5bd85a9d1 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index e9f681eb6c..5f85947e8f 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 9965844da8..cb2a384e33 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 430fbb49b5..c9da24c94c 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:36+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 69b2803098..6150985f2a 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 068c33dd19..262ed4b442 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 8bed6425ef..498ba94e46 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index acee5e6f2f..9a3fe6279e 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 29c6b21845..c3ca6cb4fb 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index abfb115395..0c174b044d 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 7bd60d87c7..20799f37e3 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 3fb95dfa4c..f9688156c2 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index a49fe45df3..efb2fbab59 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index e650df73a9..d03d9f7bf3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 68404577a4..5c568957d3 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index b4654fe6f7..82d738bf85 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index c518e994c8..a41b5ab243 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 6f8e595c94..db2a572fd7 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 8843e5eec5..54e45a3a07 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po index cf65859080..b295405af2 100644 --- a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 243488fe67..861f31c240 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 65325a42bf..f8c2d3f798 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po index a8af95b6dd..dcf35c3f17 100644 --- a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index f844e14dc2..f7dbc00411 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 91369380da..39ac2cbb98 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index ff5e053ee5..b8f052adc5 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index fc37b59986..80f3203343 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:39+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index f1430e32fd..9143956752 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index 0b98ead442..60c2106d98 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index e839ebdb5a..f49b33aff7 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index c291e9ab10..a43ea9929b 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 019f6d6f24..f622719390 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index c3d5c35f5d..9353e56592 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 848b49099c..00ea0df2fc 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index 19a4c3e1d7..667995abb6 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 1fdbe004d9..fa55defc44 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index 2c8553e2b8..495ab887aa 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 53688d9e69..aeee8170b4 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index c7bd216375..6bc3c5d63d 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index 09f5ff8cd2..c677e1e100 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index 7742affcc6..185237140e 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po new file mode 100644 index 0000000000..01d0af3b9e --- /dev/null +++ b/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po @@ -0,0 +1,194 @@ +# Translation of StatusNet - EmailRegistration to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# Author: Od1n +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-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 "Registro no permitido." + +#. TRANS: Client exception trown when trying to register without an invitation. +msgid "Sorry, only invited people can register." +msgstr "Disculpa, sólo personas invitadas pueden registrarse." + +#. TRANS: Client exception thrown when no confirmation code was provided. +msgid "No confirmation code." +msgstr "Ningún código de confirmación." + +#. TRANS: Client exception trown when using an invitation multiple times. +msgid "Invitation already used." +msgstr "Invitación ya utilizada." + +#. TRANS: Client exception thrown when given confirmation code was not issued. +msgid "No such confirmation code." +msgstr "No hay tal código de confirmación." + +#. TRANS: Title for registration page. +msgctxt "TITLE" +msgid "Register" +msgstr "Registrarse" + +#. TRANS: Title for page where to register with a confirmation code. +msgctxt "TITLE" +msgid "Complete registration" +msgstr "Completar el registro" + +#. 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 "" +"Fue enviado un correo electrónico a %s para confirmar esa dirección. " +"Compruebe su bandeja de entrada de correo electrónico para obtener " +"instrucciones." + +#. TRANS: Client exception trown when trying to set password with an invalid confirmation code. +msgid "No confirmation thing." +msgstr "Ningún código de confirmación." + +#. 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 "" +"Debe aceptar los términos del servicio y política de privacidad para " +"registrarse." + +#. TRANS: Error text when trying to register without a password. +msgid "You must set a password" +msgstr "Debe establecer una contraseña" + +#. TRANS: Error text when trying to register with too short a password. +msgid "Password must be 6 or more characters." +msgstr "La contraseña debe tener 6 o más caracteres." + +#. TRANS: Error text when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." + +#. TRANS: Exception trown when using an invitation multiple times. +msgid "Failed to register user." +msgstr "Error al registrar usuario." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Confirm your registration on %s" +msgstr "Confirma tu registro en %s" + +#. 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 "" +"Alguien (probablemente usted) ha solicitado una cuenta en %1$s usando esta " +"dirección de correo electrónico. Para confirmar la dirección, haga clic en " +"la siguiente dirección URL o copiarlo en la barra de direcciones del " +"navegador. %2$s Si no fue usted, usted puede ignorar este mensaje." + +#. TRANS: Form instructions. +msgid "Enter your email address to register for an account." +msgstr "" +"Introduzca su dirección de correo electrónico para registrar una cuenta." + +#. TRANS: Field label on form for registering an account. +msgctxt "LABEL" +msgid "E-mail address" +msgstr "Dirección de correo electrónico" + +#. TRANS: Button text for registering an account. +#. TRANS: Button text for action to register. +msgctxt "BUTTON" +msgid "Register" +msgstr "Registrarse" + +#. TRANS: Form instructions. +msgid "Enter a password to confirm your new account." +msgstr "Introduzca una contraseña para confirmar tu nueva cuenta." + +#. TRANS: Field label in e-mail registration form. +msgctxt "LABEL" +msgid "User name" +msgstr "Nombre de usuario" + +#. TRANS: Field label. +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#. TRANS: Field label on account registration page. +msgid "Password" +msgstr "Contraseña" + +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "6 o más caracteres." + +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "Igual a la contraseña anterior" + +#. TRANS: Checkbox title for terms of service and privacy policy. +#, fuzzy, php-format +msgid "" +"I agree to the Terms of service and Privacy policy of this site." +msgstr "" +"Estoy de acuerdo con el %1$ s " +"\"> términos de servicio y %1" +"$ s\" > política de privacidad de este sitio." + +#. 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 "" +"Ya existe un usuario con esa dirección de correo electrónico. Puede utilizar " +"la herramienta de %s \"> " +"recuperación de contraseñas para recuperar una contraseña de falta." + +#. TRANS: Error text when trying to register with an invalid e-mail address. +msgid "Not a valid email address." +msgstr "Correo electrónico no válido" + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#. TRANS: Plugin description. +msgid "Use email only for registration." +msgstr "Usar el correo electrónico sólo para el registro." diff --git a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po index 1e0c6dba6f..828710656d 100644 --- a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index f2df80411e..5d7a243687 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po index 8e023412fa..76f8ec9eb6 100644 --- a/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index 4baf799b4f..1796c07aeb 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:43+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 3d649408e9..2519284b21 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 529683fe5a..76164cbc5d 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index e9125af783..9a55503ebe 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po new file mode 100644 index 0000000000..199558e84e --- /dev/null +++ b/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po @@ -0,0 +1,178 @@ +# Translation of StatusNet - EmailRegistration to Russian (Русский) +# Exported from translatewiki.net +# +# Author: Eleferen +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-emailregistration\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Client exception trown when registration by e-mail is not allowed. +msgid "Registration not allowed." +msgstr "" + +#. TRANS: Client exception trown when trying to register without an invitation. +msgid "Sorry, only invited people can register." +msgstr "" + +#. TRANS: Client exception thrown when no confirmation code was provided. +msgid "No confirmation code." +msgstr "" + +#. TRANS: Client exception trown when using an invitation multiple times. +msgid "Invitation already used." +msgstr "" + +#. TRANS: Client exception thrown when given confirmation code was not issued. +msgid "No such confirmation code." +msgstr "" + +#. TRANS: Title for registration page. +msgctxt "TITLE" +msgid "Register" +msgstr "" + +#. TRANS: Title for page where to register with a confirmation code. +msgctxt "TITLE" +msgid "Complete registration" +msgstr "" + +#. 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 "" + +#. TRANS: Client exception trown when trying to set password with an invalid confirmation code. +msgid "No confirmation thing." +msgstr "" + +#. 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 "" + +#. TRANS: Error text when trying to register without a password. +msgid "You must set a password" +msgstr "Вы должны установить пароль" + +#. TRANS: Error text when trying to register with too short a password. +msgid "Password must be 6 or more characters." +msgstr "Пароль должен быть длиной не менее 6 символов." + +#. TRANS: Error text when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "Пароли не совпадают." + +#. TRANS: Exception trown when using an invitation multiple times. +msgid "Failed to register user." +msgstr "Не удалось зарегистрировать пользователя." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Confirm your registration on %s" +msgstr "" + +#. 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 "" + +#. TRANS: Form instructions. +msgid "Enter your email address to register for an account." +msgstr "Введите свой адрес электронной почты для регистрации учётной записи." + +#. TRANS: Field label on form for registering an account. +msgctxt "LABEL" +msgid "E-mail address" +msgstr "Адрес электронной почты" + +#. TRANS: Button text for registering an account. +#. TRANS: Button text for action to register. +msgctxt "BUTTON" +msgid "Register" +msgstr "Регистрация" + +#. TRANS: Form instructions. +msgid "Enter a password to confirm your new account." +msgstr "Введите пароль для подтверждения новой учётной записи." + +#. TRANS: Field label in e-mail registration form. +msgctxt "LABEL" +msgid "User name" +msgstr "Имя пользователя" + +#. TRANS: Field label. +msgid "Email address" +msgstr "Адрес эл. почты" + +#. TRANS: Field label on account registration page. +msgid "Password" +msgstr "Пароль" + +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "6 или более символов." + +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "" + +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Error text when trying to register with an invalid e-mail address. +msgid "Not a valid email address." +msgstr "" + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Welcome to %s" +msgstr "Добро пожаловать в %s" + +#. TRANS: Plugin description. +msgid "Use email only for registration." +msgstr "" diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index a833747e8c..49a5715cef 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index 369f473e4f..3e081a7344 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index 9739bfa8dd..0660a06e31 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index 47b8e3d853..7757706338 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 f6b5727437..3f436ae5a0 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:44+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po index 20c122ddf2..196a458ad1 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..6e5de520bb --- /dev/null +++ b/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - EmailReminder to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-emailreminder\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "Enviar correo electrónico de recuerdo para varias cosas." + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "Error de base de datos al insertar registro de recuerdo." + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Recordatorio - por favor confirma tu registro!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Segundo recordatorio - por favor confirma tu registro!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Recordatorio final - por favor CONFIRMA tu registro!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "Recordatorio - ha sido invitados a unirse a %s !" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "Recordatorio final - ha sido invitado a unirse a %s !" diff --git a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po index 1df8e3ed46..873b02cc8f 100644 --- a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:45+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po index 00ca2f299c..73841e13b6 100644 --- a/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index e7fca7b8ef..03e054ff88 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po index e164936e24..ff7dc80c0d 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po index ccce588a9b..0ec4579d33 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po index af93b744d2..5fc9dd7ba2 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 9fb55705d3..9f92ce9d7a 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 49db2216a6..e6d59fc29d 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index be6c35422e..7a8e9815a3 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po new file mode 100644 index 0000000000..7e478ca482 --- /dev/null +++ b/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - EmailSummary to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Erchache2000 +# -- +# 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-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"Language-Team: Spanish \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 (r106599); 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-emailsummary\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Subject for e-mail. +#, php-format +msgid "Your latest updates from %s" +msgstr "Las actualizaciones más recientes de %s" + +#. 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 "Las actualizaciones más recientes de %1$s para %2$s :" + +#. TRANS: Link text for link to conversation view. +msgid "in context" +msgstr "en contexto" + +#. 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. +#, fuzzy, php-format +msgid "change your email settings for %2$s" +msgstr "" +"%1$ s \"> cambiar la " +"configuración de correo electrónico para %2$s" + +#. TRANS: Plugin description. +msgid "Send an email summary of the inbox to users." +msgstr "" +"Enviar un resumen de correo electrónico de la bandeja de entrada para los " +"usuarios." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network" +msgstr "Enviarme un resumen periódico de actualizaciones de mi red" diff --git a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po index 57f327a13a..10a685bfca 100644 --- a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:47+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po index c618f2c933..3740bc6a74 100644 --- a/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index da23aab4ac..d52ddca289 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 7fc75e1170..85ac61cae1 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 96f5fda2c0..c05bb37cce 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index 8382dda771..780d9410f2 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 03a9d6962f..8b569f7127 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 3a90f689d7..39c741bc44 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index ab2ac5d2b9..b3425534e7 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:53+0000\n" "Language-Team: Arabic \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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index b15aab6dcf..a89c75e916 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" @@ -35,13 +35,13 @@ msgstr "(30 mun)" msgid "(1 hour)" msgstr "(1 eurvezh)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 eurvezh)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 eurvezh)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index df775443f5..15d6fa897c 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -34,13 +34,13 @@ msgstr "(30 min)" msgid "(1 hour)" msgstr "(1 hora)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 hora)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 hora)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index 685d2b8c9b..32ac761ccc 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" @@ -35,13 +35,13 @@ msgstr "(30 min)" msgid "(1 hour)" msgstr "(1 Stunde)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 Stunde)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 Stunde)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po index 1a00745b6d..166c920794 100644 --- a/plugins/Event/locale/eu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" @@ -35,13 +35,13 @@ msgstr "(30 min)" msgid "(1 hour)" msgstr "(ordubete)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(ordubete)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(ordubete)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index 283b066797..49c20cb37c 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -39,13 +39,13 @@ msgstr "(30 min)" msgid "(1 hour)" msgstr "(1 heure)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 heure)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 heure)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po index 76bcfdc8dc..46b07633e1 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:54+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -34,13 +34,13 @@ msgstr "(30 min)" msgid "(1 hour)" msgstr "(1 hora)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 hora)" +msgstr "(%.1f horas)" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 hora)" +msgstr "(%d horas)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 91ffae3687..2e3869124c 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" @@ -34,13 +34,13 @@ msgstr "(30 min.)" msgid "(1 hour)" msgstr "(1 hora)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 hora)" +msgstr "" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 hora)" +msgstr "" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 7baf3adabf..691cf50c02 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" @@ -34,13 +34,13 @@ msgstr "(30 мин)" msgid "(1 hour)" msgstr "(1 час)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 час)" +msgstr "(%.1f часа)" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 час)" +msgstr "(%d часа)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index ba502855ed..c9af816c54 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" "Language-Team: Malay \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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 0c47cf7f1a..0336c093fc 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" @@ -35,13 +35,13 @@ msgstr "(30 min.)" msgid "(1 hour)" msgstr "(1 uur)" -#, fuzzy, php-format +#, php-format msgid "(%.1f hours)" -msgstr "(1 uur)" +msgstr "(%.1f uur)" -#, fuzzy, php-format +#, php-format msgid "(%d hours)" -msgstr "(1 uur)" +msgstr "(%d uur)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 7c148fb972..a2385fee69 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 1b749992df..c8ca7b111d 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 1e7075161d..7b57bc7761 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02: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-10-10 14:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 5ac344626a..4214a89a9d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 4c90604bc9..e8ad6e0e24 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:59+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 88a6b2b8ef..0b1b679f5b 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:02:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index de8c6e9fc8..9053cd53e8 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index 29d9d4e922..50d6fa7811 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -3,6 +3,7 @@ # # Author: George Animal # Author: Giftpflanze +# Author: Kghbln # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" @@ -196,7 +197,7 @@ msgstr "Titel" #. TRANS: Field label for extended profile properties. msgid "Manager" -msgstr "Manager" +msgstr "Verwalter" #. TRANS: Field label for extended profile properties. msgid "Location" diff --git a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po index 8cd259ec94..5e0f801da6 100644 --- a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:00+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 5a0a68f45a..facd5af44d 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po index 2afcdbd839..ee92d157e9 100644 --- a/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 6a16e69d09..3e6b7b31fe 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po index 9094a1452e..3a0f974570 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:00+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 06300bd677..ea5ff17dd4 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 9451f9e291..40c62b6d88 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index ba9dec3e02..69f51f87fd 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index 394269ec41..ee1e269276 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index b2d53356fb..763030e1fe 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index a05b2b6120..216081cf95 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index fa24d79638..ff0d2ef61f 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index b143c5569c..a714e7323f 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:07+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 1374327fdb..eeedca26e6 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 83f881bea0..41586b2a63 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 8cf94b651c..4828f5d593 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index 5cdcdd9afa..7ec2016fa6 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index ef4d34f978..c81302da00 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po index a334adca26..bcdb6c1eb1 100644 --- a/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index f9d1a32505..4140538e77 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 8768e04883..5966a99f5b 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" "Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mg\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index fb92ff64e8..e55ef23a96 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 1a32f026ea..d2440e0359 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index ac85f8b83f..030418734f 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index a0854eb656..473f963a7d 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 50b0e4a6ca..eeb56dfad1 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 35748d4998..650d036d45 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 bb17d5312c..c2060612d2 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 30e7f5d980..56d3373900 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:44:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index be6aeda6fe..04c27748e9 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 009fc556c6..e944e17bb6 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 59d625480f..b39e3e3f9a 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po index ae928d1d32..57cb801de8 100644 --- a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index bedf8f49f2..9d95872db6 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 4ed87965cc..fddbe4556a 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index c3e01022df..5c76b7be07 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index f978ede839..41c8e10f02 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:11+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index e735693d19..21df2f99dd 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 1245fcb631..533211868b 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 16b0d8aec0..883f41f9ff 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index d7eea51a2d..7e37cc889f 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 8ad74f694a..d695990047 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index f7af467373..b9a9d9ebe5 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 9a4445ecb7..cd4f3d45b1 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index 1ed1c7900c..6a53a12099 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index 689389088b..95c11f5d1d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 ba56843af3..991cf2dcd9 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po index 7e1d13737f..6f3092bfcf 100644 --- a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index a816b3ebaf..952b6c2e75 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po index 70c5a05f20..60054c9313 100644 --- a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 84c20aa8d4..e96790caff 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index e9faf7d64a..b765704da3 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po index cdcc64cb95..f283752092 100644 --- a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 5c74059be8..19f9d863c3 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index f341cfb742..13a87c5868 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 5f3b371e2d..177bbd3b6e 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index c210659d8e..09434b271f 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index bfab2e8a4b..5fe5b8c4c9 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index d40a9b681a..d76294cb43 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index 5dcfe96294..11690a1c0f 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 1cc9eb634f..67dd246cd1 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 50aa6cbe35..ff031c3209 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 2c41b3032a..18f60cbd9e 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po index 0f53d70010..914c20b0f0 100644 --- a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 45262af9ce..c8cb03f1c2 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 628d4a8283..16e4c66aeb 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 8e5dbb01bb..82568ea83d 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po index b7bccb4eb1..3a2072f8d6 100644 --- a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 1a3b148773..42c0058c64 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index bda102ad9e..c29fb9d539 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 28189e9811..04a433d901 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index de025b1f2c..af25121fd8 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 01798a512a..3cd4b5d8ab 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index 4816da4918..39043bb6e1 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 469a490d4f..409aa5d015 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:16+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 218ff2cb07..9ffab099b6 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index cba90f9ba4..c2ce8ffbb4 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 6334097497..64139725c6 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 94c6f63d38..fc1a4f24c5 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 85f1864731..e6a3e268c2 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 42764fc66e..f329f50c6f 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:25+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index 883402f79c..e5d3cf87c7 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po index da2fcabf7b..51193bd5be 100644 --- a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:26+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index 5cff29713f..49c39c9bef 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index eaf458a9d2..4aced4c010 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po index a59c313e5b..6a4baa2b47 100644 --- a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:28+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index c8fbee6c64..7249cf6734 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index b11181f677..f1b8996fb2 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 60eb75ea1e..55aefae215 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 8e8844eb70..c9f5476409 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index d00f9c4b1c..ebdd193898 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 0d7a2c3607..48616b5b20 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 6115cb83c5..45796cda07 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:34+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 722acbdbc6..af46805a9f 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 29223de35d..51e21f0795 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index 8ebdc2c4e2..fd5c6cf6d3 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 7f1f5a6ec0..e9a948c288 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 4f7bde930f..1470b19fb6 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index ee15d1f966..69f39ce97f 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d09e13f003..0753ee7344 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index b9e2a36f32..fa66e559e7 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po index ef07a82377..af042a2ab0 100644 --- a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 005725762c..77205aba48 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index f5d5abd95f..c83d9a3d3e 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po index 151adcae44..1be0225f8c 100644 --- a/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 48db925543..a018966905 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index 739129d35e..10b45d9384 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 808591a63b..5770a2b040 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index d17618d28a..ac46ccded4 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:21+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 4f24a8e900..5748e0753b 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 074af6682c..e0cda6d275 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index b99643fa4a..a021deea77 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 70917800cd..7104e352c7 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po index db0732532c..f35c2817c7 100644 --- a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index fd960123f0..be0ade6f1d 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 7ae586a0ef..f6fe2a761b 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index 6b97bd4d2e..636f2ff019 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:39+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 29bdeb04d5..fd0d64ca29 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po index af580affa1..7b7f90d28f 100644 --- a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 8e043ea459..95823d30a0 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 3a95595de1..2c8f8759c0 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 66b6e44b5c..0e6c5474ac 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 062ae5d83b..f7ca1205b5 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 87e5642309..872ce3e804 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index 8c30f04f9f..f4bddcd04c 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 8966dfada9..8f1a20834f 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 801a2a760b..b392642c30 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:43+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index a28f9f2531..85ad098ed0 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po index c44fc9f55a..232c56826e 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 0459873761..3012339f26 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 9396ad1211..904e099804 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 982f36b24c..3bc2907fe6 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index aed9b035c4..73d4f313c0 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 0aafe8b3c7..5ca07812ac 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 4bb9729ab6..ffc097b11a 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 8c731df578..625d82edf7 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po index 4a884d7cea..19c20eb0be 100644 --- a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:49+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index a891a833d4..ea4b576375 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po index d7a727441b..75557b7733 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index 1a96293913..5fdd408477 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 554bf4c94f..0cd9d90912 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 7f2ce19f56..989f390137 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index f30baf3a33..40d357498e 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 407a5d8774..8fdc2bf86d 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:55+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 5679e9540a..e12a910882 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po index b6c2942285..80b43e9765 100644 --- a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:03:57+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 736ca77b55..de62c9fcca 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 3e166f89b0..d413606e5f 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index 7b23b22a3a..e377b15ea4 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:00+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index ec868a3468..8f5f1d1fd2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 e921de28f3..4bc4df20a9 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 12a1a63d5c..df26075e39 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:02+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 25775383b6..0f84239aeb 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:02+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 8ecff1e6a6..e9f7b52878 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index fff576a975..a3f531e74b 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po index 4455a9e6cf..61a2355691 100644 --- a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:02+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index b6bc094b7b..3c0900c062 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po index f91fab7bc4..e2bef194cd 100644 --- a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:03+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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index f0a4d13731..30c9f8a44e 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 5a45255666..022cf8eedc 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index fbe2cf2307..8579ae57e4 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index c5c200ca69..fbbe147a23 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index cdda96c61a..23b0d87362 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:04+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index b309468fe3..8ff9f331c3 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 77f922c983..a54718712f 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index f5c703b0d8..96b0a807c4 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 0abbfc7a60..a71f299b98 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:08+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index 7d9f9ea36a..d5afded290 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:09+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index 051b3f0938..eaa9bffcbc 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po index 5e87ec83fb..665e85777f 100644 --- a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 6ff9fc1106..9f0f1209d5 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po index c63d6cd28c..1748abb248 100644 --- a/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 8f9dcd0c57..1f2068f1ba 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index 1e6663474f..380112548d 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index b5b1c45e18..326f1ccd43 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index 199b3bb6d4..d0d9f482fa 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:18+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:11+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index 72a60708a6..47d0c29be6 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index 88cb836fd4..ed97351c5a 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:19+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index af41664261..60977375e0 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 91177b6428..feb895646f 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po index f6e1140503..5817a9bfba 100644 --- a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index f019ed2f28..63c1c22e6d 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po index 2251fa37f7..29825e0345 100644 --- a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 202b6c4c81..8ef4f07110 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po index 96d0c47615..1a019d87db 100644 --- a/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 0780a7d2b6..a50931a979 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 97745753a8..ad1ab47201 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index a62c43feb9..0a3b946347 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 47c94fdb4c..717ccb21d9 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 21e5b7aeef..bf92d9c019 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 35b09fe691..624bfacc33 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 051924b808..6e53f06ea0 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:20+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 1932ace4b8..c30218db33 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index 2eb5245833..05f73a3b65 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index e145efe489..1ef0f9e85a 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 025267f5fd..d86fd3ff76 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index c14f9019fe..85d7725442 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po index a9bca1a473..53cfef97eb 100644 --- a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 8566fa0957..736a9f2ec8 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 0a526ccadf..5be00bd649 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index 8dc6f6477c..f6a6344852 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index a97b425637..9df7538b69 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index 25d5aa5c7d..1535e25b82 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index f27b167fab..cee94afb43 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index 95d932b17d..f1ac597a0b 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index 86ef90dea0..4177dbb9dc 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index c15167f3f5..4a9ff6dc97 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 2310888e14..0e43103e63 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 e327ba52ad..ae5c4d57ed 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index e1187b6dcd..8eeb98b634 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po index 17c502ceac..3b8969c313 100644 --- a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index dc1a67489d..aef8cc6a09 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po index 3171685151..ff4b595dc4 100644 --- a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 9968d8049f..c7386ee0e2 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 58e57735ec..d94fe71e21 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 393c4e15aa..d0d375c8f6 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:21+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index cbd3c61e44..71ff0368b3 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:18+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 82f8fcdc17..704ca223c8 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index ac3437266a..4867b0d692 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index d235598959..a8e29c580b 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 06bbfcd131..b9cce0c44f 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 3fae91448a..b6d5de4f51 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index c32281c5b0..656c1c1a17 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index a44c662b13..331ebe08d5 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 74ac2c2114..f498f04451 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:22+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index 84d441df78..e818d74b71 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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/ca/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po index 4202d75e26..1caccaca57 100644 --- a/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:22+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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index 1822e71b25..75dfc49ad3 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 7cf42efaad..bbfe2a0a3c 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po index 16a6b2e06c..699953bc43 100644 --- a/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -37,11 +37,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"O usuario \"%1$s\" de %2$s dixo que o pseudónimo %3$s pertence a el ou ela. " -"Se é certo, pódeo confirmar premendo neste enderezo URL: %4$s. (Se non pode " -"premer nel, copie e pegue o enderezo na barra de enderezos do navegador.) Se " -"ese usuario non é vostede ou se non solicitou esta confirmación, ignore esta " -"mensaxe." +"O usuario \"%1$s\" de %2$s dixo que o pseudónimo %3$s perténcelle a el ou " +"ela. Se é certo, pódeo confirmar premendo neste enderezo URL: %4$s. (Se non " +"pode premer nel, copie e pegue o enderezo na barra de enderezos do " +"navegador.) Se ese usuario non é vostede ou se non solicitou esta " +"confirmación, ignore esta mensaxe." #. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. msgid "You must specify a host." diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 5e77752fb0..f00dda5727 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index b793654a90..0404c32089 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index d46369adbb..5bf62ea06e 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index c50f4bb0b1..ba69737978 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index 6fc298b475..fd1ea1f771 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po new file mode 100644 index 0000000000..628fd2b532 --- /dev/null +++ b/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - Irc to Turkish (Türkçe) +# Exported from translatewiki.net +# +# Author: Emperyan +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Irc\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:24+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:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); 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-irc\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Service name for IRC. +msgid "IRC" +msgstr "IRC" + +#. TRANS: Body text for e-mail confirmation message for IRC. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the plugin display name ("IRC"), %4$s is the confirm address URL. +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a host." +msgstr "Bir ana bilgisayar belirtmeniz gerekir." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a username." +msgstr "Bir kullanıcı adı belirtmelisiniz." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a \"real name\"." +msgstr "\"Gerçek adınızı\" belirtmelisiniz." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a nickname." +msgstr "Bir takma ad belirtmelisiniz." + +#. TRANS: Plugin description. +msgid "" +"The IRC plugin allows users to send and receive notices over an IRC network." +msgstr "" + +#. TRANS: Exception thrown when an IRC attempts count could not be updated. +#. TRANS: %d is the object ID for which the count could not be updated. +#, php-format +msgid "Could not increment attempts count for %d." +msgstr "" + +#. TRANS: Message given when using an unregistered IRC nickname. +msgid "Your nickname is not registered so IRC connectivity cannot be enabled." +msgstr "" + +#. TRANS: Server error thrown on database error when deleting IRC nickname confirmation. +msgid "Could not delete confirmation." +msgstr "Onay silinemedi." + +#. TRANS: Server exception thrown when an IRC waiting queue item could not be added to the database. +msgid "Database error inserting IRC waiting queue item." +msgstr "" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index ff452b20c0..0d99c3f580 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 1cbbe22199..3da71dbc69 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 a421e95272..9585b39725 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index 5ac61d347b..ea4fc6a124 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po index 57ab956391..fa220409a7 100644 --- a/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:26+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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index eb13acdbdc..5c12583af4 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index 171ac7a7ba..4b73971fd8 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 2cfd90757a..07780cea24 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 6b93522ce6..75a8198332 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 93116714ff..5d4378a7d8 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 70d3bce60c..64d8f9658b 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 54b5df15f7..1f2bdf5c5b 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 678b627187..1d5e94a68b 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po index 7330a82ccc..669f9d00c3 100644 --- a/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 97dcb3eb73..efdfd73e10 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 62c506323b..1a26c794ef 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 2dddb75810..ead433c2fd 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index efa20b52cd..3a0f755e62 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 7072b5df38..dd6a2f1cd0 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index 6c6deef83b..c6550d209d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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/ca/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po index 4b436510dd..18e7fa9849 100644 --- a/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index 8d2606d2f9..35d90bfc60 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index 9b04e99bfe..fd054d2606 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po index 827cc41d92..d553499872 100644 --- a/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index d28062d3f8..edab7ae790 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index d1baed6df5..277b70ded2 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index cea414eb89..170e2c96fb 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index 46849f50f2..e85f5fe60d 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index 5dd19c055d..eb0f724165 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index d9259f5fc3..b14bb1fed3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 dbc28bc248..a31955c99b 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index a6f46edd52..18b2b13336 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po index 2b9081bf20..130217ab77 100644 --- a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:30+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index c127dbf62d..bfbe8dbfd6 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po index 89326b38b6..23280bb3bb 100644 --- a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index feaef2fb82..a682169081 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 70b7890b50..850524f867 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index a381dfded6..4d201b3de4 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 90906abc07..96450125b7 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:31+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 35571872b5..a544a7835c 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 67844e28ff..a025062dda 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index 498619397d..fbe34b1706 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 83f761d3c6..c08fdffed7 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index 687ffda957..266b12316b 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:31+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 249e9a93a9..798b53ffb3 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index f024ae60cd..0199543ba3 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index bcdfc8763e..49c11ea2d3 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 7f00b9e29b..d1bcf7aa78 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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/ca/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po index 8c926cf510..8a3bebd6a8 100644 --- a/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index 551b2c628c..9e0e97bd55 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 0bec617f99..b03500d40c 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po index f7747a6ada..cd87672a07 100644 --- a/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:35+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:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index 8936f600e2..b8ea73b245 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index ef3be59847..aeead4a3d5 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index f6fc23cebb..c4ae5fa3d2 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index 746ab1439a..975a5150d5 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index f4f17f4a45..0a5487c6be 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index 2e07a97ddf..0fd6cb7741 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index c6ff51c826..41cf1c69d9 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 511c7986c8..816edf6d6a 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index 16d4260215..4e2d423b68 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 4567f6e3bc..21332eb4a5 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 782dbe3841..532ea1d963 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index f15560abd7..6592b66abe 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:32+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index d820a1db9a..f9ae0e0a7d 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po index 15c244d9ea..6edb5d8086 100644 --- a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 89e718401c..87b11fb6e6 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index bb9873c090..e701e0a680 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 000675609d..310744b132 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:33+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index ff2214e8c8..5364d774dc 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index b85a240ace..3645f59b27 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index b6fdcd8ad3..64b512ead3 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 59e41ec5d1..d64ea3a071 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 4d749f0e02..22127c4ab7 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index e5118b0658..1ffd18be09 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 174b2a37a6..a5cdcce801 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index 646d68dc83..c9875f55e8 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index 6f116bc392..4096eee9d0 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 62ba09ce1d..1703750e79 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index fc4b3b5da5..a0e22a980b 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:41+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 6a89ff4f3c..ae53a83a33 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po index 0961352d47..bd8aab51e9 100644 --- a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 5541882ce9..72e4614ce8 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 43112966e0..151e39dc96 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 75771a7000..d2a7407bec 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index c65555c297..2705aefeaa 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index e7a9ce5fa4..a1124a173a 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:41+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index 82f5a161dc..576a441a11 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index ce44c85eed..8c823cdf58 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 2eadff5201..d1b0beff5c 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 7b0cd879ad..0de7d89176 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:35+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 10829765c0..23d07bd519 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 45c55695fb..849bbf3d19 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index 2fc6ccbc05..bab0006ee3 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 59c561aece..540e6f5486 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 82dfb1beb4..7a9450ce08 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index d1aa8443e6..83a6a2c76b 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 4d60502f50..6e7cc73a72 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index c335998be6..278164501e 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index 22e7e47299..8d907df8ae 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 1bad8bad2e..cd7a67c21e 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:36+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index 1e27eea6f3..9dc8803a1d 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 7572549d3e..900287c96a 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 47bc721314..86f15abe9c 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index db99af3a25..72fb35da1c 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index f9185bd9aa..8c4654dc41 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index 4c1457e59d..4739285ebc 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index e18367d338..cd39767988 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:45+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ta\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 9ecb73681e..b5b1dd8ed3 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 26f7f48a93..4f7affca83 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index b81ebc0a36..bc21952a7e 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 9fe5946754..9ff95e6d9d 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:37+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 425dbfb98e..fba94cf532 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 82e383afde..80605b638f 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 4becfa4081..b1bb741e81 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:46+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index 3321187fa2..f1827fb433 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:46+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 72aba3e0f3..9fe72451e7 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po index d976e9abab..75efb9a8ff 100644 --- a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:46+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index c363b16582..74261a4b3b 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index ff5408926f..b275c6e79d 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 3698efcd02..1a7e90c3ba 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 141267112b..266184b8f4 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index f400e062f2..50c3cce19b 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index df308f4e39..7f24696b53 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index e3169323a6..eda2f35be6 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:48+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index d9492653f2..f086c21f03 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po index 2a871c2f59..191873b721 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index aa3862a0e9..1d47739bb7 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 099ec4faf9..091a0dffc2 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 7c604d50b0..92a33323f0 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 79722afabb..88c6dd04c3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 f0541db6dc..8895792390 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index 2160da5783..feba5c57e8 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 5fa0086c5f..79eb4bebb4 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index ff9dec8fb9..1290bb7910 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po index 290098c339..944aef16ad 100644 --- a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 57c1dab07e..4b9af6f38c 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 38c529750f..b0b763ee4a 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index d9d2395571..9868c13c12 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index baaf0b556d..8c1c6b65c4 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index ad7828d1cd..ae9ab47696 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 8d7210f821..8bb1fc8487 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index ae530c202f..3f2d72122b 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index f0872abb22..c3190c4da3 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index b6cdb387b4..af4db2f099 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po index 6a82347260..ab73545b64 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 9c98c0d40d..eeb2bac177 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 83e10861aa..c173f3bc79 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index ae2211cce1..cdba5983f9 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index abed25aa7f..29cc960fe5 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 8d2c8260a0..3877dd3cbe 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 3becc80db8..34284bc8e9 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po index 9aa5c9e4ef..43792ad0c8 100644 --- a/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 4dd357ef4b..41e076fb28 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 7c7eb1fdd2..6f0338c05f 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 3ddd43f0fe..27eba85aff 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index ed1585ada7..7c3879207d 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 018bdebb14..150a7e442d 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 3e71a8b551..3cbcba2c4f 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 1d724b5b7d..fdcdb3baaa 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 8d6f6b25dd..b69ff7d690 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 8154c9557c..e5387536e7 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po index d22d78ee0b..b84d6849fd 100644 --- a/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 7acbed2c70..3e33b7fd8c 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 2eb659c37c..e47d6d74fd 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 2de30e8c35..d8f322a796 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index c5324d6317..3b4c082253 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index ed20683e12..498ce6d825 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 3609cc1a79..5bd07a2ab7 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index bb902c5e7e..a8b9bb0ca2 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index f3bd6a0ea1..70f8769b73 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 1c88a57e02..960edbfdb3 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 42c06f6c35..84e8fce557 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 0e13dee5da..621f5f3efa 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 5560429fde..97d4e51cd6 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:55+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ce\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 0feee47dfd..3e6db87a7f 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po index 7bff42cdf5..89460d2229 100644 --- a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 5f682334e4..2a26d7bde4 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index 38e8d562d1..4d6468f5e7 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:55+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index a799b3b675..dc4bea8224 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 3c3a85dc9b..6c1b61ddd9 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 563c3d89f0..1376b47cd9 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index ba65b68e03..08b1f8f580 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 336f5f75a3..2cde177fe8 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 163761ecce..71df445dfd 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index 714c87e040..9276303b13 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 703f57f4f2..f2b18fc46b 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 61d2e3642d..e2a6c2dfe9 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 480a9f73d5..403337f545 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 59f335bf77..8b1c2b05b3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 99c0945582..208933e832 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 29cb864e8c..ebe11d28ab 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 5e7efc5e24..5d77221557 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po index aa11f5c9c5..4887d2415b 100644 --- a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 8a1477906e..ce3e0fe952 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 7a84009c36..c26e55efa0 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 295cebd3dc..dd58dc3815 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 43262d6e1e..f90b846a59 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index a1baa19416..54f54a9afe 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 3288ef3849..20f8446379 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index 8d4d91609c..83646fa3ff 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 9e9e9a2b15..80c1546126 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index efea87ab1b..968fa3d2cc 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 index 9bd89eb911..5e2afc6e22 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:04:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 3bc8937e01..4ac8da3395 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index 0cfcc66f64..ae67bd2f0f 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po index 2f26817d3d..b11c9b17ae 100644 --- a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index f2c0b0624f..c037f354fd 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index 7a21b5c61e..7afa56a04d 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 08ca20233c..ad66815939 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index 8208f5e8bc..88fd9a31d7 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index fd8a07fbf5..0cf1ca84aa 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index 6ae55017b8..51f442491d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 78b473b35e..fb9b48651a 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index 2945b7b368..53a02e2dde 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index f94ef73361..6cf05f1c38 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po index cc7a2ce28d..9441747110 100644 --- a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index a9546b346f..5770aeebbb 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index 508f917011..0a0d38dd18 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index 9470ab7023..6afb5cc531 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index fa366235e1..142c4f7d77 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po index 2325bd9be0..03709f605c 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index b777f0d4fb..2f0489d765 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index c093ad2c6a..eff7c1b83e 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 7aa1b6f66a..8a92ea77a2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 4a10235531..8f4459dc11 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po index 7f61b773b0..9c619d2f16 100644 --- a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 4f2c788f30..634452ecf7 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po index 4012bf8d8f..4bcf59bb82 100644 --- a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po index be0ccc67da..280e402e5b 100644 --- a/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:03+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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 26a0ed48d3..857f108cf0 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index a0c6bcfc2d..11c6368fd4 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index ba7a8db0d8..b555be981a 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index ae7b447302..f4eef1e1dc 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index d83b83a96c..9b19890c7a 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 927fd72fe1..58321bff51 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 9afbaaa660..5f03af12b4 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 092a8ed14a..ea93a020c2 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 2035a0fd0d..2f19f1c77d 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po index 5276bb0346..53075494ce 100644 --- a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 4b0317585f..794502c364 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po index 06e39a00b4..1b85b301b1 100644 --- a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 421477e75c..f81adfee1f 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -1,6 +1,7 @@ # Translation of StatusNet - NoticeTitle to French (Français) # Exported from translatewiki.net # +# Author: Crochet.david # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -32,7 +33,9 @@ msgstr "Ajoute des titres optionnels aux avis." msgid "The notice title is too long (maximum %d character)." msgid_plural "The notice title is too long (maximum %d characters)." msgstr[0] "" +"Le titre de la description est trop longue (limitée à %d caractère maximum)." msgstr[1] "" +"Le titre de la description est trop longue (limitée à %d caractères maximum)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format diff --git a/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po index 4676df3d1b..7357fcdbd6 100644 --- a/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index f79687f27d..ddba82e776 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 2d9461f810..49c72d95ca 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index ff4e8d9b36..6d6daafb66 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 9ba389a6f9..a9fdc31c15 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index 09dda5fe5c..33d89c864f 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:06+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ne\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index bd99270370..7827cadb53 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index f99b4e72d2..54f870c812 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index 10555b25a6..9201cdf3f2 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 5528e79293..8627b45f6d 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:52+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index e12f9b8573..c6d6ee681c 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OMB/locale/OMB.pot b/plugins/OMB/locale/OMB.pot index 5882cdd915..99c1cdba48 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 ec2e01c3f4..567b13ecd9 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:08+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po index 6624247a7a..f22601d73b 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:53+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:08+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po index 496df97d1e..a15afa1564 100644 --- a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po index 6ba643589e..e6281515cc 100644 --- a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po index 0fcde0a404..50856d3bee 100644 --- a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index fc73484307..77ea8fae4e 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po index 225d896d62..2b2dc55d9e 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po index 1a2cd8683d..b05f2beb4d 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 22fcb8827f..82960d9ef6 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 index 1b078091f5..fc24966e7e 100644 --- a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 829c06d864..a66c0a859a 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 48976cd99d..0da37ae517 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po index 9bde218775..a3df34b1c8 100644 --- a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 0ad7d11d0f..e7859d8142 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 9b3455f7ab..64c4f83858 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:54+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 7d65ea26a1..92e51e50a6 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 1fa5672f57..97fcbc39a3 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index b668a421e6..aec47170bf 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 6c4b94f196..97c8562b79 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OfflineBackup/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot index 505fa0845e..32abce904c 100644 --- a/plugins/OfflineBackup/locale/OfflineBackup.pot +++ b/plugins/OfflineBackup/locale/OfflineBackup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index e781b116e2..d0c6af0f78 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d659e9ea0e..5edf23113d 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index 43e51f8483..385fffe141 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 60363710e0..a21e0596eb 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 1beb70d979..17ed1d5d30 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 8e571eeab8..3fc45e03d3 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po index afeb07d713..89504ca820 100644 --- a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 91a8175494..82445a83c8 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index d9d6a8dfba..45c030ded9 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 201c24f4af..257c96c626 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 1d5e017c18..40f8b8aa8a 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 7d2986d6b6..9d1e5539c9 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 745e898217..3cc6581b45 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index fdc5682194..92c2c01095 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index 67a107e52d..36a248eb76 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 45c97bfb89..cab13818ee 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 36bf37981d..bd38df0c68 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:45:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index a761aa8388..82f36e000a 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 3ab0b6eb39..b5920b1754 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 14be7f4a20..869796d5ac 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 0f78d3284f..765fa667e4 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -17,13 +17,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po index 7dc6d7ebd5..66c04d48c1 100644 --- a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 2f140b5ce8..f069600a15 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po index 871940782a..706a33f572 100644 --- a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index fb1e4c80f7..377258415b 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index 851b7606a1..74e4dbbe91 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" "Language-Team: Korean \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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index a73995f6e0..25d437810b 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 2c10d8789d..f25a887305 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:30+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 4bdfa5d097..22b9b95bd4 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:30+0000\n" "Language-Team: Swedish \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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 560151a5de..36049593fa 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 1eb493bf7d..5403e175d0 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index ba366d547f..3b3acd475b 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 2b6cfaf716..12d6874e7a 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index f9f69ff230..05b40be966 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 6e83e1d67e..f3527e92fd 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po index d6850da77d..0c2e5f7731 100644 --- a/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:07+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 5767beac32..15d3641901 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index ffe93bef67..896a6259f7 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index a30708bfe1..e9f57539b9 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index 2fbfd5a6c2..39573f03be 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index a8c42d3fb4..f782c8a422 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index 859a5a5785..71285da996 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d1e491e989..3d7961024b 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index b0439b8997..477d573835 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po index d0ad2d4b7c..d0bc1c46cd 100644 --- a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index 5eec25eebb..dbf10bfe84 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index 92ca2a4411..564aa162a7 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index f442eca638..33abc88c76 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index 35903b8e74..dcfb824265 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index 37d8875f4b..10938cc5bc 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index de0f02d30c..d8074c6059 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 b07664c4bc..a7977241fb 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 45a35e942f..324951633a 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 1da8533352..44da55f24d 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po index 0aa663bb26..a2371d61e3 100644 --- a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index c441cfbdf9..fde903911f 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 0c34d59076..01214969f7 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index c7f17f57c2..107318815a 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index f9de98aaf3..39a580ce3c 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:25+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 6105c3aaa0..e94bf75820 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index b186aafb4d..08679e9a13 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 20452a22cd..ab01cc3783 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 9baad2e903..90598a81fc 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index a9f0eb5f16..05785a9be6 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 33ed24a1dc..794f2d1336 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 599a6d7027..8e498ea46f 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 283c50a2e9..e1b62f17f4 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 8a3af16bda..dab06f7a28 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:59+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index 3fcfc25f48..09ff0f41eb 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index 139afdf7cc..8224d25cab 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po index cc5873bafe..1d9efeec31 100644 --- a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:05: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index 94d0327e1f..552cb49e54 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po index 307ca320d8..cbee19cbd2 100644 --- a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po index 34753f72db..48342c7fbe 100644 --- a/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 26a7871045..5beb1143f2 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po index 31867d093d..173a601b35 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index bc0e11e919..f6d7671c6f 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index a1ed7be7ff..b46d283067 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 1f882b5290..2479384cf3 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 5d8eb1bdcd..a3908e37b5 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index c4f6cfa4eb..7d1d263cf3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 974f76d9a3..06ceac2bbf 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 9e7bb03d7b..e304ad9ed6 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 5a33957a82..86ee3fe2bf 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index a33b6e1410..77535c06fb 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po index 35aa9ef1dc..8e320a995a 100644 --- a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 73578e36c1..4bd1350fd8 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:01+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index d3ad5add1f..345f29bbe2 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 8b9206dfe4..534b97c177 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index b441171f1f..7a4e145174 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 05c7828c20..acc9e6cc01 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index fa9af44d8c..235b4d9018 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index c830384845..db1f30af84 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 7aad677420..33cf63a151 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index 23106cd874..661de93df3 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index bdee92fcaa..c86d87db6e 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index f2094b48da..cc124937f4 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 938dce636c..c5f2996881 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index 3102f777aa..3137d4b7aa 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d119c76b80..cf9fe4612a 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:03+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index a5fa8d3a01..62cb742cf4 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 030890b41a..1322df476b 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 6864bdaf7c..fb0924dd18 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po index 563f0fc01f..b718f9ee49 100644 --- a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 41c0ed28c7..5583514af9 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index b3ddbc05f2..0eb47f8691 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:03+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po index 8da25ecb73..94117ed10f 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:03+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 63cc626adb..0ecb7bc5ac 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 6544d10ed5..0b1ad82de1 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index a2342d542c..914c7bbc8e 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 2c285b8fcd..14645d0154 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index c188b5ae9b..357726fe52 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index f63ca25406..051e0bb59b 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index b7ee976d97..a8c05e8d8f 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index dfa04ba91d..baf2b96a13 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index c3c9befd2a..24a64de5c4 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 c9a7729096..afa2a06077 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po index f29f2179a0..c5db14bf4c 100644 --- a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 8fc8f0737f..393d6e1d1a 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index f5f3b230ab..586f7699d1 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index d4d337baf2..2b26b04f86 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 2cc7bae377..c056bb54c2 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 3f478c2feb..5c4dbc95f7 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 8aca963c67..9946bac334 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 63ef3f48e8..984c4c09ec 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index 31ef8ef394..1c7684dd2d 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index f82488feca..171a58ab75 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index b808676f64..767ade2f72 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 94822fa103..24e07f425d 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 5054c476ff..018e60c803 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 6d03a4bfa3..4884f398d6 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 948de4e858..2a9cda3ea3 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 10c6fc69c6..8a4546496f 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index 5ec1e2df8e..9472a15d85 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 5d10a4bd5a..6bcb012d2b 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index 266b51ce49..b571bb8cbb 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po index 0615316b99..318ecb1521 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 78409f257a..2b8b06cece 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po index 44809c12d7..058cdd9ac1 100644 --- a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 98b447cfe4..ceefefa4c8 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po index b4d87692c2..73f6240f50 100644 --- a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index cd8b19283d..06bacca1c4 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po index 80197cc1e3..50ab643444 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:14+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index 95ed3ff72a..b906479b8c 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index 1b9e892abc..2c39f464d7 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po index 291f26697f..36b547e2f4 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:15+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index 9be0f83d8c..1fd1ab4592 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index 843d47c672..7e78068863 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 07d8daa05e..5b8db825ba 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 83d49114a2..3fc7ace5a2 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 81fae4f6a2..bfc46aec8f 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po index 8001a48cd0..346a61dcf1 100644 --- a/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:28+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-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 0bef072d85..f91efcfb84 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:48+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index c1a4cc82cc..c405cfdc9f 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 03a3e223b1..b9eb8bb398 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index 8190756085..a2ad3a738a 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index ff58d10ebc..bcdd03d464 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:49+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index c1ab3929f2..546206dc50 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 6fa3f908c3..31b929e74d 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 587666756f..063b7d2085 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:16+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index f955f7c1ed..5688de7786 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 853c44ed3b..b36f05bc05 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 12e3acfe83..d1878a5009 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index e082597d12..eddb4171be 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po index 8ef590a6b1..0584e5acdd 100644 --- a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" "Language-Team: Galician \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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index 46de48801e..648940a4f6 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 6b3b9cb010..d29dd967e1 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:17+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lv\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 4f0cb305ac..87d7e4c4ba 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:40+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 9df7a47916..f6d294784a 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:17+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ne\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index 99e87d7c7f..fc55b9a724 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po index b48ac742cb..66e4d8b973 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:17+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index 9e9683d7c2..54f588a4bd 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index 167b05fd29..f52a3713d2 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 01624c8a93..9b74f0afb6 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index ca9bd01613..d3c4e55a78 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:41+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 00436fdcde..d8ed9201e2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 905c26b36f..f72659a5b5 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 7343e4d57b..f87b51be85 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 3e99387b51..00c07ebeb2 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index ea8c54228d..4b83f9bda8 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:18+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po index f250d84877..0b36f5f7d3 100644 --- a/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index b4843e53d1..1c643e8d61 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 5906e966cd..b7dcd09c67 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 165474bcd3..908da69a4d 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index bb7d023ba9..ccb0fad979 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po index 79cd6e0cad..f2c8ce7682 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:19+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index bb06fe0de8..409a43b9be 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index d42f6223af..dc789c0a2d 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index 6be68cbf28..59912baa44 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:42+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index ace5241ead..d7535bdaba 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index c1431879d2..a52f8fa920 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index b79a9b2454..9c9fa0c0ce 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 index 5892ea61d8..6e454be9ac 100644 --- a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:20+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 36146932d7..c9ab096879 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index 5796ee36ee..77c861d79d 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po index c2d1a861b2..df8bba95df 100644 --- a/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 3cc99ec389..bae6bcf069 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 253e11aff7..0be19c72e7 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index de34df8b25..7394ef512c 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 46cd3cdf31..7291818c03 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 5b3e911d1d..e220487604 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:44+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 30b57f87f0..eb93f09d9f 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 01f303519d..3c6ab5ef15 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po index 35cbdff114..7532662f5e 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po index 2739ff1552..5f0b0d740e 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 4a7ebfec2f..e0e5efae20 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index e45d54dbcc..b8e1925ad4 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po index bfa4f30871..68bd046f1f 100644 --- a/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:45+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 3b5f730667..1a00198b97 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 56741ec067..04df2d80aa 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index 11f550755a..7f8770588f 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po index f47f3c0740..962152cc43 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:24+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 11e32f63b0..e43c73b940 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 7165195bd2..c33ccb4be1 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 732bde2f6e..038e459f95 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 596a775b3d..b794d71d61 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 00999913c6..233ef0b94d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po index dd9440ffe1..2dc8ccf48d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:46+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index dc273d89d5..ce4910d867 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 24282ca987..23c5c8da54 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 1adf5b3676..1e2adf7e6f 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index ae7fb32317..eca2404a9a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index 754e3b07ac..c4bf47b630 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index a329e98f21..98551424fd 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 5b2178e4a2..ca3401676e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 0607f6b83c..ffcb31ebca 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 8b359973b3..bebde9c68e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index d070f695fc..1dc3ae09bd 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:47+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 1d956fa75d..817f679730 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d1d6d545c1..d5449380cd 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 18416ac500..30c4436fe8 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po index 2b16646250..93007733f5 100644 --- a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index 1fc6c59af4..3fada167fa 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index b6283aa87d..91af15ef57 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index ee0a11fafb..041a0864e3 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 80f939a603..426b990f59 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 0fe2ffe698..d4e40e5a3e 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index d28bedd55c..7941008c27 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index c2e1cfd551..782f9b8041 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index 0d7eb26658..cd38633f67 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:04+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index cb4200a7eb..260f2907cd 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 2f08cc9dd9..f2b7508dc7 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index 6cd4b4a9cd..ea36c5a11f 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po index 0047790c73..5271312d26 100644 --- a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:46+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index fb6535bdde..36e1bbfd2b 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index 477f47f3bc..a7ad1602d7 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index f855e6e5e8..fe706dc83d 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:46+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index d805cbe21b..e64abb5c35 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index cd501b8a05..11e041586f 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index 9e7dc359b1..0c11296e90 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index 64a984787e..de31d19e0e 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index e7b3742bf1..64be70a337 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 619db925e3..3d65935031 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:29+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index 9f12bd0e51..e505663db3 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:29+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 4f9706ba52..0f5e595439 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index 212711722c..412ddcd1fb 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 6344202381..5a0139b6e6 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 44ea84d4d2..20242fbdcd 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po index 91c3621fe7..ebb00d3a34 100644 --- a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index 5ac557bd37..3a02fa84cf 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index bde7793b7a..e2962ba569 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:30+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 8dcf997c15..83c6385361 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:50+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index 033d0741e5..d13dfb5d30 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index 670208f38a..c30e07b177 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:30+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pdc\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index fc0ccc1e58..d085d3b459 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index ce6138bd6b..ea6513cc8d 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index ad1498193a..df63f8d248 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index e60795f9ec..6878dfac80 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:51+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index 2d61704795..3a84388990 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 index 33e7beec3a..0af8ca696c 100644 --- a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 3a5754fa17..11a900d572 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index ed5d3e6f48..0284629708 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po index 27e9f4b75c..74ab31dbc9 100644 --- a/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 76b2a31b14..f6fad22681 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 76e49dc9bc..041fc215ca 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index ed76ee232f..63da10be77 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 72153ce315..ff32e1bb3e 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:54+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index 0dfb938d6d..c6fc478fa5 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index a249d5e9b3..031e1bda6d 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 499ea9d2c4..6fa2a45e45 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 0fe725f3af..c95662239d 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index 89d0e907e0..31428297fd 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index 5baa2ad1db..28938556a7 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:55+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index d56f1bb492..1404a270ed 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:36+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 1d4b41c64e..3147e951ff 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po index 185aaa23f9..679a9a8621 100644 --- a/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:36+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:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index f283649b78..d0f238088f 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index a550d61d9a..aa3de71967 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index d4c979c646..c52505f68d 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po index a5597dafc1..7e35aff498 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:36+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 947ac1585c..8b0a38d763 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:36+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index df548914e9..8715825996 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index c9fd6ba1aa..223cf092fa 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index c1b368956d..76c065e959 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:56+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index c54d212f9b..5a1a1eafc7 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 4f7bb47b9a..0f0ece24d9 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index c6378e6a69..247d1712e7 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index f2fb4fec43..327f5e66b7 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 8e63bc8753..c87cce1696 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 06274715db..fc054997d1 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index fdbf2b4dda..c12cec9357 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 2545803a89..91c3c1922d 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 435dcca22e..68dcc8d3c2 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 6191f62beb..24a21baa69 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 8c8ad28d29..bcdd2dab64 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:57+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:38+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 1de37fca5f..138db05553 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 43c7efedaa..55d5ff4ba8 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 1623fed452..bdf04bb3bd 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 7dff49ecdb..046642d55f 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index b75879431d..e73b297986 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 31b4395b89..0e1ad9b933 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index d1c759b69e..8e39c776c5 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:58+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 23073e182a..7e68f5ab09 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 184d55a882..0011f45c32 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index 9fc442a837..6f2e822ffc 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 3900ece3e0..93650e7147 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:46:59+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po index 6be8a2401b..b39c25edea 100644 --- a/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 11e1212cd8..b0e409fe88 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 4ee94ea20f..be4fa51d52 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index f682017500..a1a2956632 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 7d88ea651f..0ac0efdbbf 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 67d7d1b640..4727a08f95 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 5b450e9280..505231bfc7 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:00+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 035e7b7517..7320e03315 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 d016574b37..c4ec4ad819 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 34b7e0929d..2cd9f85e6b 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po index 6effd22d31..c87eba906c 100644 --- a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index d9ad389212..9bd616f457 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index 5379f0fd6b..c9c1ac5ded 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index 0d65087e42..54e9e3daac 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 67789584b8..dda2865612 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 4feb600b8b..71120249b9 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index bf3a29e3b4..c5938e2d72 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index c646669f03..4e2eb41ac3 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 71223fbd48..a77545daf9 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:01+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index 3114a13253..232cf67be2 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 a20d7bfb32..58d77ed669 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 8e6663b3f8..e82a52e982 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po index 0af98738f6..2044ad154b 100644 --- a/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index ce8e30dadf..34dbaeda39 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 13f1faf96c..29accbf436 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 4c417a27d6..190d14a050 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index b27d749a33..73d4ed7fb3 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 69f0e6bc49..ee7dab2999 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 71e8c85413..613e272f0d 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:02+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot index 0c9629cdf1..9be1507fb7 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 3dd8a0cb2d..3c35b1d360 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po index fcbdb35bec..fc23be1d9d 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po index ed4c3fd56e..060d301f0c 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po index 55ddc7bd32..24769459b0 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po index 868559ef49..23d2a9a501 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po index 2335d33fc3..eb54d103cd 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po index 6e6466cca0..4a7556930d 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:03+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:44+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index 63f7fb7fd8..aa3f63d40a 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 c2f74fb851..8065a085b0 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index f25dd151ba..77e0f93c65 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:05+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po index 4de3fdd880..679b04f776 100644 --- a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index 80ca4d36ca..0a3f575065 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index e10b6bd9ff..629de46511 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 0756685c65..0ec7f2517b 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 48aec498f6..8267656b17 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index 8d3d725189..ef8e70f1d5 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index d31172cef2..b102b584f6 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index df56523d29..398f412eca 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:06+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 3b3df12230..8629aa4620 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po index df61ac50eb..0c589a1458 100644 --- a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:08+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 8fd863771e..44310e9805 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index d384e2f3a4..47592bb26b 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po index 065be66219..b43dab2907 100644 --- a/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index d34899d372..dcb93e398f 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 4d6b71aaa2..947140c77d 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 81ded7ee5d..f099c0126e 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 3cb8d928ea..3146eadfdd 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 11b56d6719..94e365dc88 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:09+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 5b687fb102..5cba45a7e1 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 139c350a2d..53073b173e 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 83352478d4..130e0ac145 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 87c66bf45f..ef747bf6cb 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po index 6684ff31bc..f324136447 100644 --- a/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index e7be120e42..70c04d50e7 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 69a3e54618..c8bc20f254 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index c3e8e5075a..10b3613d5c 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 6e3e2c914c..39de8157e6 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:51+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index af5d4791ee..0e4b72f901 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 2b854c28fc..4b2c4aa656 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 1e94d0e885..317447745b 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:10+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index ba206b41c5..3b84e587d8 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 e9805c15d2..0537cf5b17 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index df64c60d6e..f0c8f5b935 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index e6a348e5b8..2cb9051b35 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index fab060be19..ee29a6d298 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index d1e91aadb0..554d9e511c 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 10d46b1afa..ff9992487b 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 4d92e98c3b..cf2f7d7c5b 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 02df6373f9..701a6f72b1 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 4b94e3f948..4c0558b55a 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index acb6cfa248..c48e7110df 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index f63331d6c8..5f53591efd 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index c507dc18d9..80efbf2f70 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:52+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nn\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index df774c23a5..29ef673df0 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 4f4e59c6cb..5e68c110ce 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:11+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 44aa9db5ba..f646ab24cd 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:12+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 48d779e1bf..4bd83be7e9 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 a6daa8f6bb..232531b92d 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:54+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index a5df8bcbfa..5f1fbdac93 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 59e1f94a1d..96c7933a54 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po index 157fe6f062..b0711f4db7 100644 --- a/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:13+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:54+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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 020a6306b1..fee1458f14 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 30ea5e990d..b4b2f4e8ac 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index f0b49685b8..afec6d4787 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 29def23f38..7e83087646 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:55+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sr-ec\n" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index f94c93dcac..6ff07e2e96 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:55+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index bdabe31772..96a8aadfd0 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index 5569046f85..4da8827ff2 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:14+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index a0148d9206..341aaaacf3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 fbcd386f31..c941890917 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 53b47db764..47e789048f 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index eae9663d89..b904663321 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index b2f5ed4dac..db382ae1c0 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index cd3e59be5e..d7e4fe6ce5 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 2e1b1ca9f4..97c43e52e0 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 3d8dd0b675..ceca0b2f54 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 69ecc65033..9c53e80ee8 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:56+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 58f8192c0b..b9d39b91b6 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index d4824ca933..79b2dea74e 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:56+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index cca7463a91..db932d300f 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index d42d317d8f..b6cbe622e4 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index 705d4bff9c..bfe7e77188 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index ab67f57f4a..41f5054b7b 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 2d3f1e455b..6017814c92 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index d42e242397..5f9f18755e 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:15+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index ba572d73f3..1e11c5938b 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 4a6d0f4ea9..14359e89d3 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 8428b65aba..1558cfa7dd 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index 68949c5e95..b4c4cd372d 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 71a9ff9a47..72427e3252 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:57+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 3d67906c50..37b5ade5ae 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index cd37011473..4d45ea7f8a 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po index d005be43c9..1b5eb00a39 100644 --- a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 2a5ed3e0ef..2aebc49870 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 14b39a6ef1..11ed1f5fb0 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:16+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index dde8393889..f40e735686 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index c2070566a0..83ea79b992 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index 62f6c8a12d..e963d79167 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 06dbaa66a5..7d3ac9cefa 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 03b5673b64..fc01494c4e 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index fbcdd19c8f..777dc42050 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 4cd9daf6df..3d41f901a3 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 66d169c0e1..49bac70c60 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:06: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 31ca0fe1a5..665bece7fe 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 6e4353a697..75e564d009 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:17+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 622a72e01e..f16c9c7f5e 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 00fc370ffc..3dca862ebf 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index d090c2ae9b..3b9b2f0a02 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index b85741ada9..4b65846c6a 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 2bbae0ee95..0728b514fe 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index cba8e39e43..ea74f7d27a 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:05+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" diff --git a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po index edd8657b53..70218701ab 100644 --- a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:23+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index b3d0d110ff..aae328f313 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 87b4918e20..1c9d06fa69 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:05+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 9a217c5c1b..397435d94b 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index a7ef269da9..ccf33538d3 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:05+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-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index df1214b9aa..e60686be42 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index d297c6fa27..7311d7c6dd 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index a47c716288..d9843c0e5a 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:06+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 8bc30d5c77..c8389bc2b7 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 76cdd890fb..e19247a1cf 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:24+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-09-25 22:08:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index c206970bd9..19354d6736 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 f44e6cb788..0f58e15fae 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:07+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index de6e468d6e..707f131279 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index feea7874f4..da8abac28e 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 0de4955812..a9b9fa3244 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po index e93ca9cc3d..eb9802f83d 100644 --- a/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index d40d3c49a0..ab4f4ca798 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" @@ -24,27 +24,28 @@ msgstr "" #. TRANS: AJAX form title for a flagged profile. msgid "Flagged for review" -msgstr "Marcate pro revision" +msgstr "Signalate pro revision" #. TRANS: Body text for AJAX form when a profile has been flagged for review. #. TRANS: Message added to a profile if it has been flagged for review. msgid "Flagged" -msgstr "Marcate" +msgstr "Signalate" #. TRANS: Plugin description. msgid "" "This plugin allows flagging of profiles for review and reviewing flagged " "profiles." msgstr "" -"Iste plugin permitte marcar profilos pro revision e revider profilos marcate." +"Iste plug-in permitte signalar profilos pro revision e revider profilos " +"signalate." #. TRANS: Form title for flagging a profile for review. msgid "Flag" -msgstr "Rader tote le marcas" +msgstr "Signalar" #. TRANS: Form description. msgid "Flag profile for review." -msgstr "Marcar profilo pro revision." +msgstr "Signalar profilo pro revision." #. TRANS: Form title for action on a profile. msgid "Clear" @@ -52,7 +53,7 @@ msgstr "Rader" #. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" -msgstr "Rader tote le marcas" +msgstr "Rader tote le signalamentos" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." @@ -60,11 +61,11 @@ msgstr "Tu non ha aperite un session." #. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." -msgstr "Tu non pote revider marcationes de profilo." +msgstr "Tu non pote revider signalamentos de profilo." #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" -msgstr "Profilos marcate" +msgstr "Profilos signalate" #. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). msgid "Moderate" @@ -76,24 +77,24 @@ msgstr "Moderar" #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" -msgstr[0] "Marcate per %1$s e %2$d altere" -msgstr[1] "Marcate per %1$s e %2$d alteres" +msgstr[0] "Signalate per %1$s e %2$d altere" +msgstr[1] "Signalate per %1$s e %2$d alteres" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. #, php-format msgid "Flagged by %s" -msgstr "Marcate per %s" +msgstr "Signalate per %s" #. TRANS: Server exception given when flags could not be cleared. #. TRANS: %s is a profile nickname. #, php-format msgid "Could not clear flags for profile \"%s\"." -msgstr "Non poteva rader marcas pro le profilo \"%s\"." +msgstr "Non poteva rader signalamentos pro le profilo \"%s\"." #. TRANS: Title for AJAX form to indicated that flags were removed. msgid "Flags cleared" -msgstr "Marcas radite" +msgstr "Signalamentos radite" #. TRANS: Body element for "flags cleared" form. msgid "Cleared" @@ -103,4 +104,4 @@ msgstr "Radite" #. TRANS: %d is a profile ID (number). #, php-format msgid "Could not flag profile \"%d\" for review." -msgstr "Non poteva marcar le profilo \"%d\" pro revision." +msgstr "Non poteva signalar le profilo \"%d\" pro revision." diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 9f42b97322..81bd2b8e8b 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 226d6023a8..029ab38d03 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index df724e4db2..00591f9832 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:26+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 5371ad0226..65ceb16573 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index 6dc7661deb..e3c77a4612 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 951196e2a7..a3fcfa083e 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index d2629dffab..ac3ce23739 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 7007120a60..eafd9e6775 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:08+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 079c4ae87e..0d9242c26f 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 908f790752..d981838aac 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index eae9898ad8..6e2388f3cc 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fa\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 03a7ebad6a..1ab3eca390 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 04e9f729af..6736855072 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:27+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 03904e84a9..74e00160c7 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 71ad4934fe..e34d2d04c1 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 73d8ec833b..3e45961e00 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 3a5fc15ae8..6d75a15282 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index a104cd2b6e..3810f987b1 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 4f139a6cea..18084669d2 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lv\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 74f4b66e9c..0054ddcfd7 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index e4e1e21315..d26f165608 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index cae40010d7..1c05001ae2 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 6dd4a5d4e4..3d685df06e 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 7a3ac3483b..5046bbfff8 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 5de4f8c678..104ff3d120 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index facaa4521c..66d6fa1b1a 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:28+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index b0da945aaf..d7ee9200a7 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 58670b4995..883bccd983 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:10+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 72541944c2..7eaf8e682e 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 7b2f247a14..9b4fb03871 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 78ec9ddf62..773e727f3c 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po index beae528506..afc34b1926 100644 --- a/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 8620cacfe5..23f7564949 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:29+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 910e17a51d..1aed580ad6 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index 2040b3d77d..b05656a604 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 8fadfba986..d3daebcff5 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 97ecc0e7c2..59165f87b6 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index feebf3fff2..470aab4874 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 8d8b7add60..3ce865c7ae 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 f54d2c970f..5a7b4706d7 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:30+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 38893cbf1a..d90407d839 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po index 39dc93f97a..ef1e4a0089 100644 --- a/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:12+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:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 19d3f62ddf..0016a9ef6c 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 6a52c5238f..a69a2bac8b 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index 6b893c5a4d..2c09c24719 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:12+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index 0eb4c5367c..d889ad9563 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index e5c677334b..9709f7edc8 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 996f7b7c09..7ab1fa882a 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index d76ff369f1..9cffa733ba 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:12+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index 45d639a196..52f127973a 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index a20494478a..7eefb51b11 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 8e0e504688..812048fbc1 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 78b5ca30e5..cf4c2091a5 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index 715c981517..a788b77679 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:31+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 0d58f9903d..b08cd95c0c 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index 5c9b68044a..123e595807 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 6703ebdcbe..5d837d8ba9 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 0a1b0939a6..78d23bbaee 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 238c46064d..b9944b8847 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 8cbd2d64b3..f2ac863d87 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 238c2b5ede..198f7861c9 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: id\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index e45fdcf2ac..8f609bad59 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index cf48b5c128..c6f9c6af32 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 6a46873141..a797165181 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 67fc1c4d99..fff1595e7c 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 76eebdc0a6..bf850a1dcb 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index 36f9edf7be..f80082e5b9 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:14+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 (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index a6f240574b..aa17a67624 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:32+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index cf576d229e..83424ec3ca 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 6c27ccb617..3a906bb134 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index d1cd2535c0..5a18b768f1 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:33+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index 4c438b2c10..019ea1f71c 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\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 4aef500499..a80f01e091 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po index 17fe7abc67..b3d9a10d5f 100644 --- a/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 10fe50ee0e..44b43aad3d 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 8bddd8ae19..834acd3252 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index 4b7b8909b7..484cbae58d 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:34+0000\n" +"POT-Creation-Date: 2011-12-19 00:01+0000\n" +"PO-Revision-Date: 2011-12-19 00: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:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index b4078ee21f..cd03ad1038 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-12-03 10:43+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\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 4d8b2b019d..b1c4ce073c 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:38+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index 510cf76ce6..ef4b7103f6 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index d7fc4e8b9f..d7f1139c2a 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 7e68860515..6df0542678 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07: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-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index e299c5312d..a3f22f4fe4 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index a02acac66e..5666b0f376 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 9bbaee4101..ed1ff05249 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00: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 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index 573d4b0a8b..32419dd00d 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 115de48a80..ec487df39d 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:21+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 (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 43996d2730..005260eed3 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 10:43+0000\n" -"PO-Revision-Date: 2011-12-03 10:47:39+0000\n" +"POT-Creation-Date: 2011-12-19 00:00+0000\n" +"PO-Revision-Date: 2011-12-19 00:07:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r105064); Translate extension (2011-10-" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" From eb124c5a671eeb642506b4ad6b5edb54999d2469 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 28 Dec 2011 12:35:03 +0100 Subject: [PATCH 097/134] Add missing space between two sentences. --- classes/Profile_tag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Profile_tag.php b/classes/Profile_tag.php index 07ed160d19..de91857eb8 100644 --- a/classes/Profile_tag.php +++ b/classes/Profile_tag.php @@ -193,7 +193,7 @@ class Profile_tag extends Managed_DataObject if ($profile_list->taggedCount() >= common_config('peopletag', 'maxpeople')) { // TRANS: Client exception thrown when trying to add more people than allowed to a list. throw new ClientException(sprintf(_('You already have %1$d or more people in list %2$s, ' . - 'which is the maximum allowed number.' . + 'which is the maximum allowed number. ' . 'Try unlisting others first.'), common_config('peopletag', 'maxpeople'), $tag)); return false; From 2624afbcd4199349236f67ac8b816423f46e5170 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 28 Dec 2011 12:44:42 +0100 Subject: [PATCH 098/134] Crazy gettext way to support two plurals in one string. --- classes/File.php | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/classes/File.php b/classes/File.php index 80fbdb181c..f3940346b3 100644 --- a/classes/File.php +++ b/classes/File.php @@ -217,13 +217,20 @@ class File extends Managed_DataObject function isRespectsQuota($user,$fileSize) { if ($fileSize > common_config('attachments', 'file_quota')) { + // TRANS: Message used to be inserted as %2$s in the text "No file may + // TRANS: be larger than %1$d byte and the file you sent was %2$s.". + // TRANS: %1$d is the number of bytes of an uploaded file. + $fileSizeText = sprintf(_m('%1$d byte','%1$d bytes',$fileSize),$fileSize); + + $fileQuota = common_config('attachments', 'file_quota'); // 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. - return sprintf(_m('No file may be larger than %1$d byte and the file you sent was %2$d bytes. Try to upload a smaller version.', - 'No file may be larger than %1$d bytes and the file you sent was %2$d bytes. Try to upload a smaller version.', - common_config('attachments', 'file_quota')), - common_config('attachments', 'file_quota'), $fileSize); + // TRANS: %1$d (used for plural) is the byte limit for uploads, + // TRANS: %2$s is the proper form of "n bytes". This is the only ways to have + // TRANS: gettext support multiple plurals in the same message, unfortunately... + return sprintf(_m('No file may be larger than %1$d byte and the file you sent was %2$s. Try to upload a smaller version.', + 'No file may be larger than %1$d bytes and the file you sent was %2$s. Try to upload a smaller version.', + $fileQuota), + $fileQuota, $fileSizeText); } $query = "select sum(size) as total from file join file_to_post on file_to_post.file_id = file.id join notice on file_to_post.post_id = notice.id where profile_id = {$user->id} and file.url like '%/notice/%/file'"; From 31305cb7433dd5a9970f23804c03e8fb713bd9fe Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 28 Dec 2011 14:00:49 +0100 Subject: [PATCH 099/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 34 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 114 +- locale/bg/LC_MESSAGES/statusnet.po | 30 +- locale/br/LC_MESSAGES/statusnet.po | 30 +- locale/ca/LC_MESSAGES/statusnet.po | 34 +- locale/cs/LC_MESSAGES/statusnet.po | 31 +- locale/de/LC_MESSAGES/statusnet.po | 37 +- locale/en_GB/LC_MESSAGES/statusnet.po | 30 +- locale/eo/LC_MESSAGES/statusnet.po | 30 +- locale/es/LC_MESSAGES/statusnet.po | 34 +- locale/eu/LC_MESSAGES/statusnet.po | 38 +- locale/fa/LC_MESSAGES/statusnet.po | 29 +- locale/fi/LC_MESSAGES/statusnet.po | 30 +- locale/fr/LC_MESSAGES/statusnet.po | 53 +- locale/fur/LC_MESSAGES/statusnet.po | 30 +- locale/gl/LC_MESSAGES/statusnet.po | 34 +- locale/he/LC_MESSAGES/statusnet.po | 30 +- locale/hsb/LC_MESSAGES/statusnet.po | 1080 +++++++---------- locale/hu/LC_MESSAGES/statusnet.po | 30 +- locale/ia/LC_MESSAGES/statusnet.po | 34 +- locale/it/LC_MESSAGES/statusnet.po | 30 +- locale/ja/LC_MESSAGES/statusnet.po | 29 +- locale/ka/LC_MESSAGES/statusnet.po | 29 +- locale/ko/LC_MESSAGES/statusnet.po | 31 +- locale/mk/LC_MESSAGES/statusnet.po | 34 +- locale/ml/LC_MESSAGES/statusnet.po | 30 +- locale/nb/LC_MESSAGES/statusnet.po | 38 +- locale/nl/LC_MESSAGES/statusnet.po | 34 +- locale/pl/LC_MESSAGES/statusnet.po | 33 +- locale/pt/LC_MESSAGES/statusnet.po | 30 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 36 +- locale/ru/LC_MESSAGES/statusnet.po | 35 +- locale/statusnet.pot | 35 +- locale/sv/LC_MESSAGES/statusnet.po | 34 +- locale/te/LC_MESSAGES/statusnet.po | 30 +- locale/tl/LC_MESSAGES/statusnet.po | 34 +- locale/uk/LC_MESSAGES/statusnet.po | 35 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 33 +- .../locale/lt/LC_MESSAGES/Activity.po | 117 ++ .../Adsense/locale/lt/LC_MESSAGES/Adsense.po | 103 ++ .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 13 +- .../locale/lt/LC_MESSAGES/Autocomplete.po | 32 + .../locale/nb/LC_MESSAGES/BitlyUrl.po | 13 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 13 +- plugins/Blog/locale/lt/LC_MESSAGES/Blog.po | 97 ++ .../locale/lt/LC_MESSAGES/BlogspamNet.po | 46 + .../locale/nb/LC_MESSAGES/BlogspamNet.po | 13 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 13 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 13 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 13 +- .../nb/LC_MESSAGES/DirectionDetector.po | 13 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 13 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 13 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 13 +- .../locale/lt/LC_MESSAGES/DomainWhitelist.po | 82 ++ plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 13 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 13 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 10 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 13 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 13 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 13 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 13 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 13 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 13 +- .../locale/nb/LC_MESSAGES/Linkback.po | 13 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 13 +- .../locale/nb/LC_MESSAGES/Memcache.po | 13 +- .../locale/nb/LC_MESSAGES/Memcached.po | 13 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 13 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 13 +- .../locale/es/LC_MESSAGES/MobileProfile.po | 39 + .../locale/nb/LC_MESSAGES/MobileProfile.po | 13 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 13 +- plugins/OMB/locale/fr/LC_MESSAGES/OMB.po | 59 + .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 10 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 13 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 13 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 13 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 13 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 14 +- .../locale/fr/LC_MESSAGES/Realtime.po | 11 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 13 +- .../ReverseUsernameAuthentication.po | 13 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 13 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 13 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 13 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 13 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 13 +- 92 files changed, 2110 insertions(+), 1425 deletions(-) create mode 100644 plugins/Activity/locale/lt/LC_MESSAGES/Activity.po create mode 100644 plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po create mode 100644 plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Blog/locale/lt/LC_MESSAGES/Blog.po create mode 100644 plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/OMB/locale/fr/LC_MESSAGES/OMB.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 232f7d2ba0..5165df27f1 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:35+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:14+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" @@ -6182,16 +6182,30 @@ msgstr "تغذرت معالجة المسار '%s'" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -6432,7 +6446,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index a0f7442733..3a16129c4c 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:54+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:19+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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" @@ -6286,16 +6286,26 @@ msgstr "Немагчыма апрацаваць URL-адрас «%s»" 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Файл ня можа быць болей %1$d байта, а дасланы Вамі файл ўтрымлівае %2$d " "байт. Паспрабуйце загрузіць меншую вэрсію." @@ -6382,133 +6392,139 @@ msgstr "Вы заблякаваны ад дасылкі непасрэдных #. TRANS: Message given when a message could not be stored on the server. msgid "Could not insert message." -msgstr "" +msgstr "Немагчыма ўставіць паведамленьне." #. TRANS: Message given when a message could not be updated on the server. msgid "Could not update message with new URI." -msgstr "" +msgstr "Немагчыма абнавіць паведамленьне з новым URI-адрасам." #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "Няма такога профілю (%1$d) для запісу (%2$d)." #. TRANS: Server exception. %s are the error details. #, php-format msgid "Database error inserting hashtag: %s." -msgstr "" +msgstr "Памылка базы зьвестак падчас ўстаўкі хэш-тэгу: %s." #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." -msgstr "" +msgstr "Праблема захаваньня запісу. Занадта доўгі." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. msgid "Problem saving notice. Unknown user." -msgstr "" +msgstr "Праблема захаваньня запісу. Невядомы карыстальнік." #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Зашмат запісаў за кароткі час; адпачніце і паспрабуйце зноў праз некалькі " +"хвілінаў." #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" +"Зашмат аднолькавых запісаў за кароткі час; адпачніце і паспрабуйце зноў праз " +"некалькі хвілінаў." #. TRANS: Client exception thrown when a user tries to post while being banned. msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "Вам забаронена дасылаць запісы на гэты сайт." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. msgid "Cannot repeat; original notice is missing or deleted." -msgstr "" +msgstr "Немагчыма паўтарыць; пачатковы запіс быў выдалены ці зьнік." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." -msgstr "" +msgstr "Вы ня можаце паўтарыць уласны запіс." #. TRANS: Client error displayed when trying to repeat a non-public notice. msgid "Cannot repeat a private notice." -msgstr "" +msgstr "Немагчыма паўтарыць прыватны запіс." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. msgid "Cannot repeat a notice you cannot read." -msgstr "" +msgstr "Немагчыма паўтарыць запіс, які Вы ня можаце прачытаць." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." -msgstr "" +msgstr "Вы ўжо паўтарылі гэты запіс." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). #, php-format msgid "%1$s has no access to notice %2$d." -msgstr "" +msgstr "%1$s ня мае доступу да запісу %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." -msgstr "" +msgstr "Праблема захаваньня запісу." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). msgid "Bad type provided to saveKnownGroups." -msgstr "" +msgstr "Пададзены няслушны тып для saveKnownGroups." #. TRANS: Server exception thrown when an update for a group inbox fails. msgid "Problem saving group inbox." -msgstr "" +msgstr "Праблема захаваньня уваходзячых паведамленьняў групы." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #, php-format msgid "RT @%1$s %2$s" -msgstr "" +msgstr "Паўтор @%1$s %2$s" #. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, 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). #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." -msgstr "" +msgstr "Немагчыма адклікаць ролю «%1$s» для карыстальніка #%2$d, які не існуе." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +"Немагчыма адклікаць ролю «%1$s» для карыстальніка #%2$d; памылка базы " +"зьвестак." #. TRANS: Server exception. msgid "The tag you are trying to rename to already exists." -msgstr "" +msgstr "Тэг, які Вы спрабуеце перайменаваць, ужо існуе." #. TRANS: Server exception saving new tag without having a tagger specified. msgid "No tagger specified." -msgstr "" +msgstr "Тэг не пазначаны." #. TRANS: Server exception saving new tag without having a tag specified. msgid "No tag specified." -msgstr "" +msgstr "Тэг не пазначаны." #. TRANS: Server exception saving new tag. msgid "Could not create profile tag." -msgstr "" +msgstr "Немагчыма стварыць тэг профілю." #. TRANS: Server exception saving new tag. msgid "Could not set profile tag URI." -msgstr "" +msgstr "Немагчыма ўстанавіць URI тэга профілю." #. TRANS: Server exception saving new tag. msgid "Could not set profile tag mainpage." -msgstr "" +msgstr "Немагчыма ўстанавіць галоўную старонку тэга профілю." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6516,53 +6532,57 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Вы ўжо стварылі %d ці болей тэгаў, што зьяўляецца дазволенай колькасьцю " +"тэгаў. Паспрабуйце выкарыстаць ці выдаліць некаторыя існуючыя тэгі." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" +"Вы ўжо маеце %1$d ці болей людзей у сьпісе %2$s, што зьяўляецца дазволенай " +"колькасьцю. Паспрабуйце выдаліць каго-небудзь са сьпісу." #. TRANS: Exception thrown when inserting a list subscription in the database fails. msgid "Adding list subscription failed." -msgstr "" +msgstr "Немагчыма дадаць ў сьпіс падпіскі." #. TRANS: Exception thrown when deleting a list subscription from the database fails. msgid "Removing list subscription failed." -msgstr "" +msgstr "Немагчыма выдаліць са сьпісу падпіскі." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." -msgstr "" +msgstr "Няма профілю." #. TRANS: Exception thrown when a tag cannot be saved. msgid "Unable to save tag." -msgstr "" +msgstr "Немагчыма захаваць тэг." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. msgid "You have been banned from subscribing." -msgstr "" +msgstr "Вы былі заблякаваныя ад падпіскі." #. TRANS: Exception thrown when trying to subscribe while already subscribed. msgid "Already subscribed!" -msgstr "" +msgstr "Ужо падпісаны!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. msgid "User has blocked you." -msgstr "" +msgstr "Карыстальнік Вас заблякаваў." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. msgid "Not subscribed!" -msgstr "" +msgstr "Не падпісаны!" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. msgid "Could not delete self-subscription." -msgstr "" +msgstr "Немагчыма выдаліць падпіску на самога сябе." #. TRANS: Exception thrown when a subscription could not be deleted on the server. msgid "Could not delete subscription." -msgstr "" +msgstr "Немагчыма выдаліць падпіску." #. TRANS: Activity title when subscribing to another person. msgctxt "TITLE" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 0c788872b6..e7ea8c0798 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:58+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:21+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: bg\n" @@ -6314,16 +6314,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6567,7 +6577,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 4d9ffa7356..0bbed13341 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:05+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" @@ -6290,16 +6290,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6534,7 +6544,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index c1c1926eff..f76cfeea88 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,12 +16,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:11+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:27+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" @@ -6285,16 +6285,26 @@ msgstr "No es pot processar l'URL «%s»" msgid "Robin thinks something is impossible." msgstr "El Robin pensa que quelcom és impossible." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Cap fitxer pot ser major de %1$d byte i el fitxer que heu enviat era de %2$d " "bytes. Proveu de pujar una versió de mida menor." @@ -6530,10 +6540,10 @@ msgstr "" "Proveu de reemplaçar o eliminar etiquetes que ja existeixen." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Ja teniu %1$d o més persones a la llista %2$s, que és el nombre màxim " "permès. Proveu de treure'n de la llista uns quants primer." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f43d2ae7e2..a881b31327 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:29+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: cs\n" @@ -6474,16 +6474,27 @@ msgstr "Nemůžu zpracovat URL '%s'" msgid "Robin thinks something is impossible." msgstr "Robin si myslí, že je něco nemožné." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Žádný soubor nesmí být větší než %1$d bajtů a soubor, který jste poslal měl %" "2$d bajtů. Zkuste nahrát menší verzi." @@ -6728,7 +6739,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 375d26a3d7..8be3886b3a 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -32,12 +32,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" @@ -6334,16 +6334,26 @@ msgstr "Die URL „%s“ konnte nicht verarbeitet werden" msgid "Robin thinks something is impossible." msgstr "Robin denkt, dass etwas unmöglich ist." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Keine Datei darf größer als ein Byte sein und die Datei die du verschicken " "wolltest war %2$d Bytes groß. Bitte eine kleinere Version hochladen." @@ -6590,10 +6600,10 @@ msgstr "" "von Tags ist. Benutze oder lösche einige bereits vorhandene Tags." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Du hast bereits %1$d oder mehr Personen in der Liste %2$s, was die maximal " "zulässige Anzahl ist. Entferne zuerst andere Personen." @@ -8869,10 +8879,9 @@ msgid "Search" msgstr "Suchen" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Links" +msgstr "Liste" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 35a05c79b8..5c1e1ac3a5 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:23+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:33+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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: en-gb\n" @@ -6397,16 +6397,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6640,7 +6650,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 64d642375d..a231d232a5 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,12 +17,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:35+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eo\n" @@ -6368,16 +6368,26 @@ msgstr "Malsukcesis trakti URL '%s'" msgid "Robin thinks something is impossible." msgstr "Robin pensas ke io neeblas." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Grandlimo por sendota dosiero estas %1$d bajtoj, tamen tio, kion vi volis " "sendi grandas %2$d bajtojn. Provu per versio pli malgranda." @@ -6613,7 +6623,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 2f5dcc1463..a29b0ef782 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -25,12 +25,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" @@ -6294,16 +6294,26 @@ msgstr "No se puede procesar URL '%s'" msgid "Robin thinks something is impossible." msgstr " Robin piensa que algo es imposible." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Ningún archivo puede ser de tamaño mayor a %1$d bytes y el archivo que " "enviaste es de %2$d bytes. Trata de subir una versión más pequeña." @@ -6537,10 +6547,10 @@ msgstr "" "Intente utilizar o eliminar algunas etiquetas existentes." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Ya tienes %1$d o más personas en lista de %2$s , que es el máximo " "permitido. Pruebe a eliminar algunos primero." diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 55ead51ebb..079cba5eaa 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:39+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" @@ -1964,7 +1964,7 @@ msgstr "\"%s\" dokumentua ez dago." #. TRANS: Menu item in personal group navigation menu. msgctxt "MENU" msgid "Home" -msgstr "Etxea" +msgstr "Hasiera" msgctxt "MENU" msgid "Docs" @@ -6269,16 +6269,26 @@ msgstr "'%s' URLa ezin da prozesatu" msgid "Robin thinks something is impossible." msgstr "Aitorrek zerbait ezinezkoa dela uste du." -#. 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Fitxategiek ezin dute byte %1$detik gorako tamainarik izan eta bidali " "duzunak %2$d dauzka. Saiatu fitxategi txikiagoa igotzen." @@ -6513,10 +6523,10 @@ msgstr "" "erabiltzen." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Jadanik %1$d lagun edo gehiago dituzu %2$s zerrendan, eta onartutako " "gehieneko kopurura iritsi zara. Saiatu lehenengo lagunak zerrendatik kentzen." @@ -6875,7 +6885,7 @@ msgstr "saveSettings() ez dago inplementaturik." #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Home" -msgstr "Etxea" +msgstr "Hasiera" #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 6dc0ebc643..a009ee8853 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-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:41+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ 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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" @@ -6443,16 +6443,25 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "هیچ پرونده‌ای نباید بزرگ‌تر از %d بایت باشد و پرونده‌ای که شما فرستادید %d بایت " "بود. بارگذاری یک نسخهٔ کوچک‌تر را امتحان کنید." @@ -6691,7 +6700,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 4910ac944b..e3be81995b 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,12 +18,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:39+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:43+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" @@ -6326,16 +6326,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6572,7 +6582,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 6e4d6b08a7..6568932b8e 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -32,12 +32,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -170,7 +170,7 @@ msgstr "Non connecté." #. 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 "Profil non-trouvé." +msgstr "Profil non trouvé." #. TRANS: Client error displayed trying to reference a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. @@ -1435,12 +1435,11 @@ msgstr "Aucun ID de profil type: %d." #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. #, php-format msgid "Profile %1$d not subscribed to profile %2$d." -msgstr "Profil %1$d n’est pas abonné au profil de %2$d ." +msgstr "Le profil %1$d n’est pas abonné au profil %2$d." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "Impossible de supprimer l’abonnement à soi-même." +msgstr "Impossible de supprimer l’abonnement de quelqu’un d’autre." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. @@ -4161,7 +4160,7 @@ msgstr "" #. TRANS: Profile settings form legend. msgid "Profile information" -msgstr "Information de profil" +msgstr "Informations sur le profil" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. @@ -6393,16 +6392,26 @@ msgstr "Impossible de traiter l’URL « %s »" msgid "Robin thinks something is impossible." msgstr "Robin pense que quelque chose est impossible." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Un fichier ne peut pas occuper plus de %1$d octet et le fichier que vous " "avez envoyé occupait %2$d octets. Essayez de téléverser une version moins " @@ -6479,9 +6488,9 @@ msgid "Could not create login token for %s" msgstr "Impossible de créer le jeton d’identification pour %s" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Impossible d’enregistrer nouveau mot de passe." +msgstr "Impossible d’instancier la classe %s." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6649,7 +6658,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. @@ -7008,10 +7017,9 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Site personnel" +msgstr "Accueil" #. TRANS: Header in administrator navigation panel. #, fuzzy @@ -7263,10 +7271,9 @@ msgstr "Accepter" #. TRANS: Submit button text to reject a group membership request on approve group form. #. TRANS: Submit button text to reject a subscription request on approve sub form. -#, fuzzy msgctxt "BUTTON" msgid "Reject" -msgstr "Refuser" +msgstr "Rejeter" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy @@ -8751,7 +8758,6 @@ msgid "from" msgstr "de" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "web" @@ -9027,7 +9033,6 @@ msgid "Edit" msgstr "Modifier" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Privé" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 1c56e84671..99a623b85e 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" @@ -6128,16 +6128,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6359,7 +6369,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 359b052cd0..ba75fe8374 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:50+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" @@ -6292,16 +6292,26 @@ msgstr "Non se pode procesar o URL \"%s\"" msgid "Robin thinks something is impossible." msgstr "Robin pensa que algo é imposible." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Ningún ficheiro pode superar o tamaño de %1$d byte e o que enviou ocupaba %2" "$d bytes. Probe a subir un ficheiro máis pequeno." @@ -6534,10 +6544,10 @@ msgstr "" "Intente usar ou borrar algunha das que xa existen." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Vostede xa ten %1$d ou máis persoas na lista %2$s, que é o número máximo " "permitido. Intente retirar algún da lista primeiro." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 6130010b7b..9b2195134f 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:52+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" @@ -6002,16 +6002,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6233,7 +6243,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 96238208bb..c506a0af77 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:53+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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hsb\n" @@ -37,7 +37,7 @@ msgstr "" #. TRANS: Error message. msgid "An error occurred." -msgstr "" +msgstr "Zmylk je wustupił." #. TRANS: Error message displayed when there is no StatusNet configuration file. #, php-format @@ -754,7 +754,7 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. #. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. msgid "An error occured." -msgstr "" +msgstr "Zmylk je wustupił." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." @@ -1240,16 +1240,17 @@ msgstr "" #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." +msgstr "" +"Próstwa wo přistupje k skupinje %2$s za wužiwarja %1$s njeda so přetorhnyć" #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Status %1$s na %2$s" +msgstr "Naprašowanje wužiwarja %1$s za %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." @@ -1261,32 +1262,32 @@ msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "Lisćina wužiwarjow w tutej skupinje." +msgstr "%s w moderaciskej lisćinje za waše abonementy njeje." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." -msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." +msgstr "" +"Próstwa wo přistupje k skupinje %2$s za wužiwarja %1$s njeda so přetorhnyć " +"abo schwalić." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Status %1$s na %2$s" +msgstr "Naprašowanje wužiwarja %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Abonement awtorizowany" +msgstr "Abonement schwaleny" #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Awtorizacija přetorhnjena." +msgstr "Abonement přetorhnjeny." #. TRANS: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. @@ -1317,9 +1318,9 @@ msgstr "Je hižo faworit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "%s skupisnkich čłonstwow" +msgstr "Skupinske čłonstwa wužiwarja %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1645,7 +1646,6 @@ msgid "No profile with that ID." msgstr "Žadyn profil z tym ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Wotskazany" @@ -1702,15 +1702,13 @@ msgstr "Konwersacija" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Zdźělenski kanal za %s (Atom)" +msgstr "Konwersaciski kanal (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Zdźělenski kanal za %s (RSS 2.0)" +msgstr "Konwersaciski kanal (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1773,9 +1771,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Zapodaj \"%s\", zo by wobkrućił, zo chceš swoje konto zhašeć." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Twoje konto na přeco zhašeć" +msgstr "Twoje konto na přeco zhašeć." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1928,53 +1925,46 @@ 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 "" +msgstr "Dokumentacija" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#, fuzzy msgid "Getting started" -msgstr "Nastajenja składowane." +msgstr "Prěnje kroki" #. 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ć" +msgstr "Wo tutym sydle" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "Huste prašenja" msgid "Frequently asked questions" -msgstr "" +msgstr "Huste prašenja" #. 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" +msgstr "Kontaktne informacije" msgctxt "MENU" msgid "Tags" @@ -1986,21 +1976,19 @@ 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" +msgstr "Skupiny wužiwać" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "RESTful API" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2106,41 +2094,37 @@ msgstr "Opcije składowane." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Tutoho wužiwarja wušmórnyć" +msgstr "Lisćinu %s zhašeć" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Njepłaćiwa wosobowa taflička: %s." +msgstr "Lisćinu %s wobdźěłać" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." -msgstr "Žane přimjeno abo žadyn ID." +msgstr "Žane wužiwarske mjeno abo žadyn ID." #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Njeje lokalny wužiwar." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał." +msgstr "Dyrbiš tworićel tuteje taflički być, zo by ju wobdźěłał." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." +msgstr "Wužij tutón formular, zo by lisćinu wobdźěłał." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Zdźělenku wušmórnyć" +msgstr "Zhašenje přetorhnjene." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2149,15 +2133,14 @@ msgid "" msgstr "" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Njepłaćiwy wobraz." +msgstr "Njepłaćiwa taflička." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Sy tutu zdźělenku hižo wospjetował." +msgstr "Maš hižo tafličku z mjenom %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" @@ -2166,9 +2149,8 @@ msgid "" msgstr "" #. TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Wužiwar njeje so dał aktualizować." +msgstr "Lisćina njeda so aktualizować." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2593,24 +2575,25 @@ msgstr "Lisćina wužiwarjow w tutej skupinje." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Jenož skupinski administrator móže wužiwarjow dopušćić." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "%s skupisnkich čłonstwow" +msgstr "Čłonojo skupiny %s čakaja na schwalenje" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "%1$s skupinskich čłonow, strona %2$d" +msgstr "Čłonojo skupiny %1$s čakaja na schwalenje, strona %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Lisćina wužiwarjow w tutej skupinje." +msgstr "" +"Lisćina wužiwarjow, kotřiž na schwalenje čakaja, zo bychu do tuteje skupiny " +"zastupili." #. TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name. #, php-format @@ -2740,31 +2723,24 @@ msgid "IM Preferences" msgstr "M-nastajenja" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Zdźělenku pósłać" +msgstr "Mi zdźělenki pósłać" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Powěsć pósłac, hdyž so mój status Jabber/Google Talk změni." +msgstr "Powěsć pósłac, hdyž so mój status změni." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Pósćel mi wotmołwy přez Jabber/Google Talk wot ludźi, kotrychž njejsym " -"abonował." +msgstr "Pósćel mi wotmołwy wot ludźi, kotrychž njejsym abonował." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "MicroID za moju e-mejlowu adresu publikować" +msgstr "MicroID wozjewić" #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Wužiwar njeje so dał aktualizować." +msgstr "IM-nastajenja njedachu so aktualizować." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2772,43 +2748,36 @@ msgid "Preferences saved." msgstr "Nastajenja składowane." #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Žane přimjeno." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Žana zdźělenka." +msgstr "Žane přenjesenje k dispoziciji" #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Tutón Jabber-ID njehodźi so normalizować" +msgstr "Přimjeno njehodźi so normalizować." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." msgstr "Žane płaćiwe přimjeno." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Jabber-ID hižo druhemu wužiwarjej słuša." +msgstr "Wužiwarske mjeno hižo druhemu wužiwarjej słuša." #. TRANS: Message given saving valid IM address that is to be confirmed. -#, fuzzy msgid "A confirmation code was sent to the IM address you added." -msgstr "Tutón wobkrućenski kod njeje za tebje!" +msgstr "Wobkrućenski kod je so na IM-adresu pósłał, kotruž sy přidał." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." msgstr "to je wopačna IM-adresa." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "IM-wobkrućenje njeda so zhašeć." +msgstr "Wobkrućenje njeda so zhašeć." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." @@ -2816,9 +2785,8 @@ msgstr "IM-wobkrućenje přetorhnjene." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#, fuzzy msgid "That is not your screenname." -msgstr "To twoje telefonowe čisło njeje." +msgstr "To twoje wužiwarske mjeno njeje." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." @@ -2939,9 +2907,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s je do skupiny %2$s zastupił" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Njeznata skupina" +msgstr "Njeznaty zmylk při zastupjenju do skupiny wustupił." #. 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. @@ -3070,9 +3037,8 @@ msgid "Login to site" msgstr "Při sydle přizjewić" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" -msgstr "Přimjeno abo e-mejlowa adresa" +msgstr "Wužiwarske mjeno abo e-mejlowa adresa" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. @@ -3217,7 +3183,6 @@ msgstr "Zmylk Ajax" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" msgstr "Nowa zdźělenka" @@ -3394,9 +3359,8 @@ msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "IM-nastajenja" +msgstr "Stare UI-nastajenja" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." @@ -3729,9 +3693,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 "Sydłowe nastajenja składować" +msgstr "Pućikowe nastajenja składować." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3747,15 +3710,15 @@ msgstr "Za ludźimi pytać" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "Zjawna časowa lajsta, strona %d" +msgstr "Zjawna lisćina %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "Wotmołwy na %1$s, strona %2$d" +msgstr "Zjawna lisćina %1$s, strona %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). @@ -3768,67 +3731,62 @@ msgid "" msgstr "" #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." -msgstr "Taflička njeeksistuje." +msgstr "Wužiwar njeeksistuje." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Wotmołwy na %1$s na %2$s." +msgstr "Ludźo nalistowani w %1$s wot %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Wotmołwy na %1$s, strona %2$d" +msgstr "Ludźo nalistowani w %1$s wot %2$s, strona %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#, fuzzy msgid "Creator" -msgstr "Wutworjeny" +msgstr "Tworićel" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Skupinu %s wobdźěłać" +msgstr "Twoje priwatne lisćiny" #. TRANS: Title for lists by a user page for a public tag. msgid "Public lists by you" -msgstr "" +msgstr "Twoje zjawne lisćiny" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Skupinu %s wobdźěłać" +msgstr "Twoje lisćiny" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Lisćiny wot %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +msgstr "Lisćiny wot %1$s, strona %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "Njemóžeš sej lisćiny druhich ludźi wobhladać" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Moderěrować" +msgstr "Modus" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Wuchadny póst za %s" +msgstr "Lisćiny za %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3840,22 +3798,19 @@ msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Zjawny" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "Taflička njeeksistuje." +msgstr "Zjawne taflički pokazać." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" -msgstr "Start" +msgstr "Wotpósłać" #. 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). @@ -3882,9 +3837,9 @@ msgid "Lists with %s in them" msgstr "" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +msgstr "Lisćiny z %1$s, strona %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). @@ -3907,27 +3862,27 @@ msgstr "" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "%s abonowany." +msgstr "Abonenća lisćiny %1$s wot %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "%1$s z %2$s markěrowany, strona %3$d" +msgstr "Abonenća lisćiny %1$s wot %2$s, strona %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "%s abonowany." +msgstr "Wot %s abonowane lisćiny" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s abonementow, strona %2$d" +msgstr "Wot %1$s abonowanych lisćiny, strona %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3944,7 +3899,7 @@ msgstr "" #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" msgid "Disabled" -msgstr "" +msgstr "Znjemóžnjeny" #. TRANS: Client error displayed when trying to use another method than POST. #. TRANS: Do not translate POST. @@ -3965,7 +3920,7 @@ msgstr "Tykač njeeksistuje." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" msgid "Enabled" -msgstr "" +msgstr "Zmóžnjeny" #. TRANS: Tab and title for plugins admin panel. msgctxt "TITLE" @@ -3992,13 +3947,12 @@ msgstr "" #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Njeidentifikowane polo %s." #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Pytanske sydło" +msgstr "Pytanske wuslědki" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." @@ -4051,19 +4005,18 @@ msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle." #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" -msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" +msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#, fuzzy msgid "Describe yourself and your interests." -msgstr "Wopisaj sebje a swoje zajimy" +msgstr "Wopisaj sebje a swoje zajimy." #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4122,18 +4075,16 @@ msgstr "" "Awtomatisce kóždeho abonować, kotryž mje abonuje (najlěpše za \"njeludźi\")." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Abonementy" +msgstr "Abonementowe nastajenja" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Móžeš jenož wosobam slědować." +msgstr "Kóždy smě mje abonować" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Prjedy so prašeć" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." @@ -4177,9 +4128,9 @@ msgstr "Njepłaćiwa taflička: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Wužiwar njeda so za awtomatiske abonowanje aktualizować." +msgstr "" +"Wužiwar njeda so za awtomatiske abonowanje abo subscribe_policy aktualizować." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4201,9 +4152,8 @@ msgid "Beyond the page limit (%s)." msgstr "Limit stronow (%s) překročeny." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Zjawny prud njeda so wotwołać." +msgstr "Zjawna časowa lajsta njeda so wotwołać." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4217,24 +4167,20 @@ msgid "Public timeline" msgstr "" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Kanal zjawneho pruda (Atom)" +msgstr "Kanal zjawneje časoweje lajsty (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Kanal zjawneho pruda (RSS 1.0)" +msgstr "Kanal zjawneje časoweje lajsty (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Kanal zjawneho pruda (RSS 2.0)" +msgstr "Kanal zjawneje časoweje lajsty (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Kanal zjawneho pruda (Atom)" +msgstr "Kanal zjawneje časoweje lajsty (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4428,15 +4374,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Nowe hesło bu wuspěšnje składowane. Sy nětko přizjewjeny." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "Žadyn argument ID." +msgstr "Žadyn parameter 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 "Dataja njeeksistuje." +msgstr "Dataja \"%d\" njeeksistuje." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4451,7 +4396,6 @@ msgid "Registration successful" msgstr "Registrowanje wuspěšne" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrować" @@ -4461,9 +4405,8 @@ msgid "Registration not allowed." msgstr "Registracija njedowolena." #. 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 "Njemóžeš so registrować, jeli njepřizwoleš do licency." +msgstr "Njemóžeš so registrować, jeli njezwoliš do licency." #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." @@ -4480,13 +4423,11 @@ msgid "" msgstr "" #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Wobkrućić" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "E-mejl" @@ -4500,7 +4441,6 @@ msgid "Longer name, preferably your \"real\" name." msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno." #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Registrować" @@ -4576,9 +4516,8 @@ msgid "" msgstr "" #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Licenca" +msgstr "Njeje w lisćinje" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4615,9 +4554,9 @@ msgstr "Wotmołwy na %1$s, strona %2$d" #. 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 "Kanal wotmołwow za %s (Atom)" +msgstr "Kanal wotmołwow za %s (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4742,7 +4681,6 @@ msgid "You cannot revoke user roles on this site." msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "Wužiwar nima tutu rólu." @@ -4762,18 +4700,17 @@ msgstr "Wužiwar je hižo w pěskowym kašćiku." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "Njepłaćiwa wosobowa taflička: %s." +msgstr "Njepłaćiwa lisćina: %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +msgstr "Wužiwarjo, kotřiž su so z %1$s woznamjenili, strona %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Posedźenja" @@ -4783,7 +4720,6 @@ msgid "Session settings for this StatusNet site" msgstr "Nastajenja posedźenja za tute sydło StatusNet." #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Posedźenja" @@ -4795,9 +4731,8 @@ msgstr "Z posedźenjemi wobchadźeć" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Z posedźenjemi wobchadźeć" +msgstr "Posedźenja sam zrjadować" #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4809,9 +4744,8 @@ msgid "Enable debugging output for sessions." msgstr "" #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Přistupne nastajenja składować" +msgstr "Posedźenske nastajenja składować" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4837,7 +4771,6 @@ msgid "Application actions" msgstr "Aplikaciske akcije" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Wobdźěłać" @@ -4860,9 +4793,8 @@ msgid "Consumer secret" msgstr "Potajnstwo přetrjebowarja" #. TRANS: Field label on application page. -#, fuzzy msgid "Request token URL" -msgstr "Njepłaćiwy token." +msgstr "URL za naprašowanski token" #. TRANS: Field label on application page. msgid "Access token URL" @@ -4893,9 +4825,9 @@ msgid "Could not retrieve favorite notices." msgstr "Preferowane zdźělenki njedadźa so wobstarać." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Kanal za fawority wužiwarja %s (Atom)" +msgstr "Kanal za fawority wužiwarja %s (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -4952,9 +4884,9 @@ msgid "%1$s group, page %2$d" msgstr "%1$s skupina, strona %2$d" #. 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 "Zdźělenski kanal za skupinu %s (Atom)" +msgstr "Zdźělenski kanal za skupinu %s (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5021,9 +4953,8 @@ msgid "Message from %1$s on %2$s" msgstr "Powěsć wot %1$s na %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "IM k dispoziciji njesteji." +msgstr "Nic k dispoziciji" #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5031,21 +4962,21 @@ msgstr "Zdźělenka zničena." #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "%1$s z %2$s markěrowany, strona %3$d" +msgstr "Priwatna časowa lajsta za lisćinu %1$s wot tebje, strona %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "%1$s z %2$s markěrowany, strona %3$d" +msgstr "Časowa lajsta za lisćinu %1$s wot tebje, strona %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "%1$s z %2$s markěrowany, strona %3$d" +msgstr "Časowa lajsta za lisćinu %1$s wot %2$s, strona %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. @@ -5061,15 +4992,15 @@ msgstr "" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Wotmołwy na %1$s na %2$s." +msgstr "Časowa lajsta za lisćinu %1$s wot %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Kanal za fawority wužiwarja %s (Atom)" +msgstr "Kanal za lisćinu %1$s wot %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. @@ -5085,19 +5016,18 @@ msgstr "" #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"%s nima abonentow. Čehodla nochceš [konto registrować] (%%%%action.register%%" -"%%) a prěni być?" +"Čehodla [njeregistruješ konto] (%%%%action.register%%%%) a započnješ časowej " +"lajsće slědować?" #. 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 "Licenca" +msgstr "Nalistowany" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5112,9 +5042,8 @@ msgstr "(Žadyn)" #. 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 "Wjace pokazać" +msgstr "Wšě pokazać" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -5123,21 +5052,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s z %2$s woznamjenjeny" +msgstr "Zdźělenki wot %1$s z %2$s woznamjenjene" #. 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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%1$s z %2$s markěrowany, strona %3$d" +msgstr "Zdźělenki wot %1$s z %2$s woznamjenjene, strona %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +msgstr "Zdźělenki wot %1$s, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5147,9 +5076,9 @@ msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" #. 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 "Zdźělenski kanal za %s (Atom)" +msgstr "Zdźělenski kanal za %s (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5228,7 +5157,6 @@ msgid "User is already silenced." msgstr "Wužiwarjej je hižo huba zatykana." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Sydło" @@ -5268,21 +5196,18 @@ msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Powšitkowny" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Sydłowe mjeno" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Mjeno twojeho sydła, kaž \"TwojePředewzaće Microblog\"" +msgstr "Mjeno twojeho sydła, kaž \"TwojePředewzaće - Mikroblog\"." #. TRANS: Field label on site settings panel. msgid "Brought by" @@ -5305,12 +5230,10 @@ msgid "Email" msgstr "E-mejl" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Kontaktowa e-mejlowa adresa za twoje sydło" +msgstr "Kontaktna e-mejlowa adresa za twoje sydło." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Lokalny" @@ -5328,15 +5251,13 @@ msgid "Default language" msgstr "Standardna rěč" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" "Rěč sydła, jeli awtomatiske spóznawanje po nastajenjach wobhladowaka k " -"dispoziciji njesteji" +"dispoziciji njesteji." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Limity" @@ -5370,9 +5291,8 @@ msgid "SSL logo" msgstr "SSL-logo" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Sydłowe nastajenja składować" +msgstr "Sydłowe nastajenja składować." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5490,9 +5410,8 @@ msgid "That is the wrong confirmation number." msgstr "To je wopačne wobkrućenske čisło." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "IM-wobkrućenje njeda so zhašeć." +msgstr "SMS-wobkrućenje njeda so zhašeć." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5528,7 +5447,6 @@ msgid "No code entered." msgstr "Žadyn kod zapodaty." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Njejapke fota" @@ -5550,7 +5468,6 @@ msgid "Invalid snapshot report URL." msgstr "Njepłaćiwy URL rozprawy njejapkeho fota." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Njejapke fota" @@ -5576,23 +5493,20 @@ msgid "Frequency" msgstr "Frekwenca" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Njejapke fotki budu so do tutoho URL słać." +msgstr "Njejapke fotki budu so jónu při kóždym N-ym wopyće webstrony słać." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL rozprawy" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." msgstr "Njejapke fotki budu so do tutoho URL słać." #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Nastajenja wobrazowkoweho fota składować" +msgstr "Nastajenja njejapkich fotow składować." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5609,46 +5523,43 @@ msgstr "" #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "%s skupisnkich čłonstwow" +msgstr "%s skupinskich čłonstwow, kotřiž na schwalenje čakaja" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "%1$s skupinskich čłonow, strona %2$d" +msgstr "Abonenća wužiwarja %1$s, kotřiž na schwalenje čakaja, strona %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Lisćina wužiwarjow w tutej skupinje." +msgstr "Lisćina wužiwarjow, kotřiž na schwalenje čakaja, će abonować." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonowany" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił." +msgstr "Dyrbiš přizjewjeny być, zo by so z lisćiny wotskazał." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "Žadyn argument ID." +msgstr "Žadyn ID podaty." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." +msgstr "Wužiwar %1$s njeda so lisćinje %2$s přidać: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "%1$s abonentow, strona %2$d" +msgstr "%1$s je lisćinu %2$s jako %3$s abonował" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5665,13 +5576,13 @@ msgstr "%1$s abonentow, strona %2$d" #. TRANS: Page notice for page with an overview of all subscribers #. TRANS: of the logged in user's own profile. msgid "These are the people who listen to your notices." -msgstr "" +msgstr "To su ludźo, kotřiž twoje zdźělenki čitaja." #. TRANS: Page notice for page with an overview of all subscribers of a user other #. TRANS: than the logged in user. %s is the user nickname. #, php-format msgid "These are the people who listen to %s's notices." -msgstr "" +msgstr "To su ludźo, kotřiž zdźělenki wužiwarja %s čitaja." #. TRANS: Subscriber list text when the logged in user has no subscribers. msgid "" @@ -5741,7 +5652,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Abonowanski kanal za %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "IM" @@ -5758,9 +5668,9 @@ msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Zdźělenski kanal za tafličku %s (Atom)" +msgstr "Zdźělenski kanal za tafličku %s (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -5783,42 +5693,37 @@ msgstr "Zdźělenski kanal za tafličku %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." +msgstr "Njemóžeš tutoho wužiwarja woznamjenić." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "Wužiwarski profil" +msgstr "Profil podać" #. 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 "Limity" +msgstr "%s podać" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "Zmylk Ajax" +msgstr "Zmylk" #. TRANS: Header in list form. msgid "User profile" msgstr "Wužiwarski profil" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "Limity" +msgstr "Wužiwarja podać" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Limity" +msgstr "Lisćiny" #. TRANS: Field title on list form. msgid "" @@ -5832,15 +5737,14 @@ msgid "Tags" msgstr "" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Hesło składowane." +msgstr "Lisćiny składowane." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" -"wužij tutón formular, zo by swojim abonentam abo abonementam taflički přidał." +"Wužij tutón formular, zo by swojich abonentow abo swoje abonementy lisćinam " +"přidał." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -5864,14 +5768,13 @@ msgstr "Wotskazany" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "%1$s abonentow, strona %2$d" +msgstr "%1$s je so jako %3$s z lisćiny %2$s wotskazał" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "IM-nastajenja" +msgstr "URL-nastajenja" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -5884,9 +5787,8 @@ msgid " (free service)" msgstr " (swobodna słužba)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "Žadyn" +msgstr "[žadyn]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" @@ -5902,7 +5804,7 @@ msgstr "" #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "URL dlěši hač" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." @@ -5910,7 +5812,7 @@ msgstr "" #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "Tekst dlěši hač" #. TRANS: Field title in URL settings in profile. msgid "" @@ -5922,14 +5824,12 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Krótšenska słužba za URL je předołha (maks. 50 znamješkow)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "Njepłaćiwy wobsah zdźělenki." +msgstr "Njepłaćiwa ličba za maksimalnu URL-dołhosć." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Njepłaćiwy wobsah zdźělenki." +msgstr "Njepłaćiwa ličba za maksimalnu dołhosć zdźělenki." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." @@ -5959,7 +5859,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Njepłaćiwy standardny abonement: \"%1$s\" wužiwar njeje." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6089,25 +5988,21 @@ msgid "Plugins" msgstr "Tykače" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Mjeno" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Wersija" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Awtorojo" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Wopisanje" @@ -6131,16 +6026,28 @@ msgstr "URL '%s' njeda so předźěłać" msgid "Robin thinks something is impossible." msgstr "Robin měni, zo něšto je njemóžno." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -6215,9 +6122,9 @@ msgid "Could not create login token for %s" msgstr "Njeje móžno było, přizjewjenske znamješko za %s wutworić" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Nowe hesło njeda so składować." +msgstr "Njeda so instanca za klasu %s tworić." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6242,9 +6149,9 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "Žadyn profil (%1$d) za zdźělenku (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "Zmylk datoweje banki při zasunjenju hašeje taflički: %s" +msgstr "Zmylk datoweje banki při zasunjenju hašeje taflički: %s." #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -6270,23 +6177,20 @@ msgid "You are banned from posting notices on this site." msgstr "Słanje zdźělenkow na tutym sydle je ći zakazane." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Njemóžno twoju zdźělenku wospjetować." +msgstr "Njeda so wospjetować: prěnjotna zdźělenka faluje abo je zhašana." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." msgstr "Njemóžeš swójsku zdźělenku wospjetować." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Njemóžno twoju zdźělenku wospjetować." +msgstr "Priwatna zdźělenka njeda so wospjetować." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Njemóžno twoju zdźělenku wospjetować." +msgstr "Zdźělenka, kotruž njemóžeš čitać, njeda so wospjetować." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6294,9 +6198,9 @@ msgstr "Sy tutu zdźělenku hižo wospjetował." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Wužiwar nima poslednju powěsć." +msgstr "%1$s nima přistup na zdźělenku %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6341,29 +6245,24 @@ msgid "The tag you are trying to rename to already exists." msgstr "" #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "Žana skupina podata." +msgstr "Žadyn markěrowar podaty." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "Žana skupina podata." +msgstr "Žana taflička podata." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "Profil njeje so składować dał." +msgstr "Profilowa taflička njeda so wutworić." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "Profil njeje so składować dał." +msgstr "URI profiloweje taflički njeda so nastajić." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "Profil njeje so składować dał." +msgstr "Hłowna strona profiloweje taflički njeda so nastajić." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6376,18 +6275,16 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "Abonoment njeda so zhašeć ." +msgstr "Abonement lisćiny njeda so přidać." #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "Abonoment njeda so zhašeć ." +msgstr "Abonement lisćiny njeda so wotstronić." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -6422,7 +6319,6 @@ msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Slědować" @@ -6508,23 +6404,19 @@ msgid "User deletion in progress..." msgstr "Wužiwar so haša..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Profilowe nastajenja wobdźěłać" +msgstr "Profilowe nastajenja wobdźěłać." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Wobdźěłać" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Tutomu wužiwarja direktnu powěsć pósłać" +msgstr "Tutomu wužiwarja direktnu powěsć pósłać." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Powěsć" @@ -6562,7 +6454,6 @@ msgid "Show more" msgstr "Wjace pokazać" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Wotmołwić" @@ -6570,13 +6461,12 @@ msgstr "Wotmołwić" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "Wotmołwu pisać..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" -msgstr "StatusNet" +msgstr "Status" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. @@ -6686,9 +6576,9 @@ msgid "No content for notice %s." msgstr "!Žadyn wobsah za powěsć %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Wužiwar %s njeeksistuje." +msgstr "Wužiwar \"%s\" njeeksistuje." #. 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. @@ -6730,13 +6620,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() njeimplementowany." #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Startowa strona" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Administrator" @@ -6755,7 +6643,6 @@ msgid "User configuration" msgstr "Wužiwarska konfiguracija" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Wužiwar" @@ -6765,7 +6652,6 @@ msgid "Access configuration" msgstr "Přistupna konfiguracija" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Přistup" @@ -6775,7 +6661,6 @@ msgid "Paths configuration" msgstr "Konfiguracija šćežkow" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Šćežki" @@ -6785,7 +6670,6 @@ msgid "Sessions configuration" msgstr "Konfiguracija posedźenjow" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Posedźenja" @@ -6795,7 +6679,6 @@ msgid "Edit site notice" msgstr "Sydłowu zdźělenku wobdźěłać" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Sydłowa zdźělenka" @@ -6805,7 +6688,6 @@ msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Njejapke fota" @@ -6815,18 +6697,15 @@ msgid "Set site license" msgstr "Licencu sydła nastajić" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licenca" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Plugins configuration" -msgstr "Konfiguracija šćežkow" +msgstr "Konfiguracija tykačow" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Tykače" @@ -6841,7 +6720,7 @@ msgstr "Žana aplikacija za tón kluč přetrjebowarja." #. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." -msgstr "" +msgstr "Wužiwanje API njeje dowolene." #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." @@ -6938,19 +6817,16 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Zwjazane aplikacije" +msgstr "Změny aplikacijow přetorhnyć." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Nowa aplikacija" +msgstr "Změny aplikacijow składować." #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Njeznata akcija" +msgstr "Njeznata aplikacija" #. 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. @@ -7002,15 +6878,15 @@ msgid "Do not use this method!" msgstr "Njewužij tutu metodu!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "Wotmołwy na %1$s na %2$s." +msgstr "Časowa lajsta za ludźi w lisćinje %1$s wot %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "Aktualizacije wot %1$s na %2$s!" +msgstr "Aktualizacije lisćiny %3$s wužiwarja %1$s na %2$s!" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7042,10 +6918,9 @@ msgid "Cancel join request" msgstr "" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Wšě abonementy" +msgstr "Abonowanske naprašowanje přetorhnyć" #. TRANS: Title for command results. msgid "Command results" @@ -7114,9 +6989,8 @@ msgstr "" "Zdźělenki: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: Already favorited." -msgstr "Faworit njeda so wutworić." +msgstr "Faworit njeda so wutworić: Je hižo faworit." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." @@ -7143,18 +7017,18 @@ msgstr "" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s - %2$s" -msgstr[1] "%1$s - %2$s" -msgstr[2] "%1$s - %2$s" -msgstr[3] "%1$s - %2$s" +msgstr[0] "%1$s je přez %2$s woznamjenił" +msgstr[1] "%1$s je přez %2$s woznamjenił" +msgstr[2] "%1$s je přez %2$s woznamjenił" +msgstr[3] "%1$s je přez %2$s woznamjenił" #. 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. @@ -7385,38 +7259,34 @@ msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Přikazowe wuslědki" +msgstr "Přikazy:" #. TRANS: Help message for IM/SMS command "on". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Zdźělenje njeda so zmóžnić." +msgstr "Zdźělenja zmóžnić" #. TRANS: Help message for IM/SMS command "off". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Zdźělenje njeda so znjemóžnić." +msgstr "Zdźělenja znjemóžnić" #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "tutu pomoc pokazać" #. TRANS: Help message for IM/SMS command "follow ". -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Tutoho wužiwarja abonować" +msgstr "Wužiwarja abonować" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "nalistuje skupiny, do kotrychž sy zastupił" #. TRANS: Help message for IM/SMS command "tag". msgctxt "COMMANDHELP" @@ -7431,24 +7301,22 @@ msgstr "" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "ludźi nalistować, kotrymž slěduješ" #. TRANS: Help message for IM/SMS command "subscribers". msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "Ludźi nalistować, kotřiž ći slěduja" #. TRANS: Help message for IM/SMS command "leave ". -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "Tutoho wužiwarja wotskazać" +msgstr "Wužiwarja wotskazać" #. TRANS: Help message for IM/SMS command "d ". -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Direktne powěsće do %s" +msgstr "Direktna powěsć wužiwarjej" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" @@ -7456,10 +7324,9 @@ msgid "get last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "whois ". -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Zdaleny profil skupina njeje!" +msgstr "Profilowe informacije wo wužiwarju wotwołać" #. TRANS: Help message for IM/SMS command "lose ". msgctxt "COMMANDHELP" @@ -7482,10 +7349,9 @@ msgid "repeat a notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "repeat ". -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Tutu zdźělenku wospjetować" +msgstr "Poslednju zdźělenku wužiwarja wospjetować" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" @@ -7493,16 +7359,14 @@ msgid "reply to notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "reply ". -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Na tutu zdźělenku wotmołwić" +msgstr "Na poslednju zdźělenku wužiwarja wotmołwić" #. TRANS: Help message for IM/SMS command "join ". -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Njeznata skupina" +msgstr "Do skupiny zastupić" #. TRANS: Help message for IM/SMS command "login". msgctxt "COMMANDHELP" @@ -7510,10 +7374,9 @@ msgid "Get a link to login to the web interface" msgstr "" #. TRANS: Help message for IM/SMS command "drop ". -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Skupinu zhašeć" +msgstr "Skupinu wopušćić" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" @@ -7550,10 +7413,9 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all". #. TRANS: Help message for IM/SMS command "tracks". #. TRANS: Help message for IM/SMS command "tracking". -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Přikaz hišće njeimplementowany." +msgstr "hišće njeimplementowany." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" @@ -7589,17 +7451,15 @@ msgstr "Zmylk w datowej bance" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Zjawny" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Limity" +msgstr "Lisćiny" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7625,9 +7485,8 @@ msgid "Disfavor favorite" msgstr "Z faworitow wotstronić" #. TRANS: Button title for removing the favourite status for a favourite notice. -#, fuzzy msgid "Remove this notice from your list of favorite notices." -msgstr "Preferowane zdźělenki njedadźa so wobstarać." +msgstr "Tutu zdźělenku z lisćiny woblubowanych zdźělenkow wotstronić." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" @@ -7639,9 +7498,8 @@ msgid "Favor" msgstr "Faworit" #. TRANS: Button title for adding the favourite status to a notice. -#, fuzzy msgid "Add this notice to your list of favorite notices." -msgstr "Preferowane zdźělenki njedadźa so wobstarać." +msgstr "Tutu zdźělenku lisćinje woblubowanych zdźělenkow přidać." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7669,7 +7527,6 @@ msgstr "Žadyn awtor w kanalu njeje." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. -#, fuzzy msgid "Cannot import without a user." msgstr "Import bjez wužiwarja njemóžno." @@ -7678,7 +7535,6 @@ msgid "Feeds" msgstr "Kanale" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Wšě" @@ -7713,7 +7569,6 @@ msgid "Blocked" msgstr "Blokowany" #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Administratorojo" @@ -7733,9 +7588,8 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "URL startoweje strony abo bloga skupiny abo temy." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Skupinu abo temu wopisać" +msgstr "Skupinu abo temu wopisać." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. @@ -7778,7 +7632,6 @@ msgid "" msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "Administrator" @@ -7807,29 +7660,26 @@ msgid "Logo" msgstr "Logo" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Woblubowane zdźělenki" +msgstr "Woblubowane skupiny" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Wšě skupiny" +msgstr "Aktiwne skupiny" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. -#, fuzzy msgid "See all" -msgstr "Wjace pokazać" +msgstr "Wšě pokazać" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." -msgstr "" +msgstr "Wšě skupiny pokazać, ke kotrymž słušeš." #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Wróćo horje" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -7920,18 +7770,16 @@ msgstr "" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trends" -msgstr "" +msgstr "Trendy" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Nowych wužiwarjow přeprosyć" +msgstr "Dalšich kolegow přeprosyć" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Nowych wužiwarjow přeprosyć" +msgstr "Kolegow přeprosyć" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -7956,26 +7804,22 @@ msgid "Send" msgstr "Pósłać" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Přeprošenja" +msgstr "Přeprošenja pósłać." #. TRANS: Button text for joining a group. -#, fuzzy msgctxt "BUTTON" msgid "Join" msgstr "Zastupić" #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Wopušćić" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Aplikacije, za kotrež sy zregistrował" +msgstr "Wšě lisćiny pokazać, kotrež sy wutworił." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8023,15 +7867,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 nětko %2$s slěduje." +msgstr "%1$s će nětko na %2$s slěduje." #. 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 slěduje twoje zdźělenki na %2$s." +msgstr "%1$s by rady twoje zdźělenki na %2$s abonował." #. 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. @@ -8055,9 +7899,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. @@ -8225,23 +8069,23 @@ 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 +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s je do skupiny %2$s zastupił." +msgstr "%1$s je do swojeje skupiny %2$s na %3$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. #. 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 je do skupiny %2$s zastupił." +msgstr "%1$s je do twojeje skupiny %2$s na %3$s zastupił." #. 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 je do skupiny %2$s zastupił." +msgstr "%1$s chce do twojeje skupiny %2$s na %3$s zastupić." #. 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, @@ -8271,9 +8115,8 @@ msgid "Inbox" msgstr "Dochadny póst" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "Twoje dochadźace powěsće" +msgstr "Twoje dochadźace powěsće." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. msgctxt "MENU" @@ -8281,9 +8124,8 @@ msgid "Outbox" msgstr "Wuchadny póst" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "Twoje pósłane powěsće" +msgstr "Twoje pósłane powěsće." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -8303,9 +8145,9 @@ msgstr "Wodaj, dochadźaće e-mejle njejsu dowolene." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." -msgstr "Njepodpěrany powěsćowy typ: %s" +msgstr "Njepodpěrany powěsćowy typ: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8317,10 +8159,9 @@ msgid "Make Admin" msgstr "K administratorej činić" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "Tutoho wužiwarja k administratorej činić" +msgstr "Tutoho wužiwarja k administratorej činić." #. 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." @@ -8392,7 +8233,6 @@ msgid "from" msgstr "wot" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "Web" @@ -8400,41 +8240,38 @@ msgstr "Web" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "XMPP" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "E-mejl" +msgstr "Póst" #. 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." -msgstr "" +msgstr "Za tutu aktiwitu awtor k dispoziciji njesteji." #. TRANS: Client exception thrown when ... -#, fuzzy msgid "Bookmark not posted to this group." -msgstr "Njesměš tutu skupinu zhašeć." +msgstr "Zapołožka njeje so do tuteje skupiny pósłała." #. TRANS: Client exception when ... -#, fuzzy msgid "Object not posted to this user." -msgstr "Tutoho wužiwarja njezhašeć." +msgstr "Objekt njeje so k tutomu wužiwarjej pósłał." #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. msgid "Do not know how to handle this kind of target." -msgstr "" +msgstr "Njewěm, kaž mam z tutej družinu cila wobchadźeć." #. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. msgid "You must implement either adaptNoticeListItem() or showNotice()." @@ -8442,7 +8279,7 @@ msgstr "" #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Wjace ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8471,9 +8308,8 @@ msgid "Attach" msgstr "Připowěsnyć" #. TRANS: Title for input field to attach a file to a notice. -#, fuzzy msgid "Attach a file." -msgstr "Dataju připowěsnyć" +msgstr "Dataju připowěsnyć." #. TRANS: Field label to add location to a notice. msgid "Share my location" @@ -8492,7 +8328,7 @@ msgstr "" #. TRANS: Separator in profile addressees list. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -8532,201 +8368,182 @@ msgid "Repeated by" msgstr "Wospjetowany wot" msgid " " -msgstr "" +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Na tutu zdźělenku wotmołwić" +msgstr "Na tutu zdźělenku wotmołwić." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Wotmołwić" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Tutu zdźělenku zhašeć." +msgstr "Tutu zdźělenku z časoweje lajsty zhašeć." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Zdźělenka wospjetowana" +msgstr "Zdźělenka wospjetowana." #. TRANS: Field label for notice text. msgid "Update your status..." -msgstr "" +msgstr "Waš status aktualizować..." #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tutoho wužiwarja storčić" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" msgstr "Stork" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." -msgstr "Tutomu wužiwarjej stork pósłać" +msgstr "Tutomu wužiwarjej stork pósłać." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. -#, fuzzy msgid "No oEmbed API endpoint available." -msgstr "IM k dispoziciji njesteji." +msgstr "Kónčny dypk oEmbed API k dispoziciji njesteji." #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "Wotkazy" +msgstr "Lisćina" #. TRANS: Field title for list. msgid "Change the list (letters, numbers, -, ., and _ are allowed)." -msgstr "" +msgstr "Lisćinu změnić (pismiki, ličby, -, ., a _ su dowolene)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Skupinu abo temu wopisać" +msgstr "Lisćinu abo temu wopisać." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Skupinu abo temu w %d znamješce abo mjenje wopisać" -msgstr[1] "Skupinu abo temu w %d znamješkomaj abo mjenje wopisać" -msgstr[2] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" -msgstr[3] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" +msgstr[0] "Lisćinu abo temu w %d znamješce wopisać" +msgstr[1] "Lisćinu abo temu w %d znamješkomaj wopisać" +msgstr[2] "Lisćinu abo temu w %d znamješkach wopisać" +msgstr[3] "Lisćinu abo temu w %d znamješkach wopisać" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Tutoho wužiwarja zhašeć" +msgstr "Tutu lisćinu zhašeć." #. TRANS: Header in list edit form. msgid "Add or remove people" -msgstr "" +msgstr "Ludźi přidać abo wotstronić" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Pytać" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Wotkazy" +msgstr "Lisćina" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s - %2$s" +msgstr "Lisćina %1$s wot %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Licenca" +msgstr "Nalistowany" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Abonenća" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "%s abonowany." +msgstr "Abonenća lisćiny %1$s wot %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Wobdźěłać" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Skupinu %s wobdźěłać" +msgstr "Twoju lisćinu %s wobdźěłać." #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Profilowe nastajenja wobdźěłać" +msgstr "Lisćinowe nastajenja wobdźěłać." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Wobdźěłać" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Priwatny" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Abonementy" +msgstr "Abonementy nalistować" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "%s abonowany." +msgstr "Wot %s abonowane lisćiny." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Aktualizacije z \"%s\"" +msgstr "Lisćiny z %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Aktualizacije z \"%s\"" +msgstr "Lisćiny z %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Lisćiny wot %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s - %2$s" +msgstr "Lisćiny wot %s." #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "Woblubowane zdźělenki" +msgstr "Twoje lisćiny" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "Njepłaćiwa wosobowa taflička: %s." +msgstr "Lisćiny wobdźěłać" #. TRANS: Label in self tags widget. msgctxt "LABEL" @@ -8734,31 +8551,29 @@ msgid "Tags" msgstr "" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Woblubowane zdźělenki" +msgstr "Woblubowane lisćiny" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s abonentow, strona %2$d" +msgstr "Nalistowane: %1$d: Abonenća: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "Wužiwar njenamakany." +msgstr "Lisćiny, w kotrychž sy" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Aktualizacije z \"%s\"" +msgstr "Lisćiny, w kotrychž wužiwar %s je" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "%s abonementow" +msgstr "Abonementy nalistować" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -8768,9 +8583,8 @@ msgid "Profile" msgstr "Profil" #. TRANS: Menu item title in personal group navigation menu. -#, fuzzy msgid "Your profile" -msgstr "Skupinski profil" +msgstr "Twój profil" #. TRANS: Menu item in personal group navigation menu. msgctxt "MENU" @@ -8783,13 +8597,11 @@ msgid "Favorites" msgstr "Fawority" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Wužiwar" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "Powěsće" @@ -8805,12 +8617,12 @@ msgstr "Njeznaty" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Znjemóžnić" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Zmóžnić" #. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" @@ -8819,15 +8631,13 @@ msgid "" msgstr "" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "SMS-nastajenja" +msgstr "Nastajenja" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Twoje profilowe nastajenja změnić" +msgstr "Twoje wosobinske nastajenja změnić." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8835,9 +8645,8 @@ msgid "Admin" msgstr "Administrator" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "Wužiwarska konfiguracija" +msgstr "Sydłowa konfiguracija." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8845,24 +8654,20 @@ msgid "Logout" msgstr "Wotzjewić" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Ze sydła wotzjewić" +msgstr "Ze sydła wotzjewić." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "Při sydle přizjewić" +msgstr "Pola sydla přizjewić." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Slědować" +msgstr "Slědowacy" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Slědować" +msgstr "Slědowace" #. TRANS: H2 text for user statistics. msgid "Statistics" @@ -8886,9 +8691,8 @@ msgid "Groups" msgstr "Skupiny" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Limity" +msgstr "Lisćiny" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -8908,13 +8712,11 @@ msgid "Recent tags" msgstr "" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "Wuběrne" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Woblubowany" @@ -8922,7 +8724,7 @@ msgstr "Woblubowany" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "Woblubowane temy" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -8933,9 +8735,8 @@ msgid "Repeat this notice?" msgstr "Tutu zdźělenku wospjetować?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." -msgstr "Tutu zdźělenku wospjetować" +msgstr "Tutu zdźělenku wospjetować." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -8947,10 +8748,9 @@ msgid "Page not found." msgstr "Strona njenamakana." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" -msgstr "Pěskowy kašćik" +msgstr "Hrajkanišćo" #. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" @@ -8994,7 +8794,6 @@ msgid "" msgstr "" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Ludźo" @@ -9004,7 +8803,6 @@ msgid "Find people on this site" msgstr "Ludźi na tutym sydle pytać" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Zdźělenki" @@ -9018,25 +8816,21 @@ msgid "Find groups on this site" msgstr "Skupiny na tutym sydle pytać" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" msgstr "Wužiwarske wuměnjenja" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Priwatnosć" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" -msgstr "Žórło" +msgstr "Žórłowy kod" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Wersija" @@ -9050,17 +8844,15 @@ msgid "More..." msgstr "Wjace..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "SMS-nastajenja" +msgstr "Nastajenja" #. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Twoje profilowe nastajenja změnić" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Awatar" @@ -9070,7 +8862,6 @@ msgid "Upload an avatar" msgstr "Awatar nahrać" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Hesło" @@ -9080,17 +8871,15 @@ msgid "Change your password" msgstr "Twoje hesło změnić" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "E-mejl" #. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" -msgstr "" +msgstr "Wobchad z e-mejlu změnić" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" @@ -9129,14 +8918,13 @@ msgstr "Awtorizowane zwjazane aplikacije" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Stara šula" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" msgstr "" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "Hubu zatykać" @@ -9179,22 +8967,21 @@ msgid "Failed to delete revoked token." msgstr "" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Abonementy" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." -msgstr "Ludźo, kotrychž %s abonuje" +msgstr "Ludźo, kotrychž %s abonuje." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." -msgstr "Ludźo, kotřiž su %s abonowali" +msgstr "Ludźo, kotřiž su %s abonowali." #. TRANS: Menu item in local navigation menu. #. TRANS: %d is the number of pending subscription requests. @@ -9210,15 +8997,15 @@ msgstr "" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Skupiny, w kotrychž %s je čłon" +msgstr "Skupiny, w kotrychž %s je čłon." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Ludźo, kotřiž su %s abonowali" +msgstr "Abonomenty wot %s nalistować." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -9227,9 +9014,9 @@ msgstr "Přeprosyć" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" +msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić." #. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" @@ -9237,7 +9024,6 @@ msgstr "Tutoho wužiwarja abonować" #. TRANS: Button text to subscribe to a user. #. TRANS: Button text for subscribing to a list. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonować" @@ -9255,10 +9041,9 @@ msgid "People Tagcloud as tagged" msgstr "" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" -msgstr "Žadyn" +msgstr "Žana" #. TRANS: Server exception displayed if a theme name was invalid. msgid "Invalid theme name." @@ -9267,6 +9052,7 @@ msgstr "Njepłaćiwe šatowe mjeno." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +"Tutón serwer njemóže z drastowymi nahraćemi bjez ZIP-podpěry wobchadźeć." #. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." @@ -9278,9 +9064,8 @@ msgid "Failed saving theme." msgstr "Składowanje šata je so njeporadźiło." #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. -#, fuzzy msgid "Invalid theme: Bad directory structure." -msgstr "Njepłaćiwy šat: špatna rjadowakowa struktura." +msgstr "Njepłaćiwa drasta: Špatna rjadowakowa struktura." #. TRANS: Client exception thrown when an uploaded theme is larger than the limit. #. TRANS: %d is the number of bytes of the uncompressed theme. @@ -9294,9 +9079,8 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Server exception thrown when an uploaded theme is incomplete. -#, fuzzy msgid "Invalid theme archive: Missing file css/display.css" -msgstr "Njepłaćiwy šatowy archiw: falowaca css-dataja/display.css" +msgstr "Njepłaćiwy drastowy archiw: Falowaca css-dataja/display.css" #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9310,47 +9094,45 @@ msgstr "Šat wobsahuje njewěste datajowe sufiksy; to móhło njewěste być." #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. -#, fuzzy, php-format +#, php-format msgid "Theme contains file of type \".%s\", which is not allowed." -msgstr "Šat wobsahuje dataju typa '.%s', kotryž njeje dowoleny." +msgstr "Drasta wobsahuje dataju typa \".%s\", kotryž njeje dowoleny." #. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Zmylk při wočinjenju šatoweho archiwa." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Zdźělenki" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Wjace pokazać" -msgstr[1] "Wjace pokazać" -msgstr[2] "Wjace pokazać" -msgstr[3] "Wjace pokazać" +msgstr[0] "Wotmołwu pokazać" +msgstr[1] "Wšě %d wotmołwje pokazać" +msgstr[2] "Wšě %d wotmołwy pokazać" +msgstr[3] "Wšě %d wotmołwow pokazać" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "Ty" #. 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 a %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You like this." -msgstr "Woblubowane zdźělenki" +msgstr "To ći lubi." #. 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. @@ -9375,10 +9157,9 @@ msgstr[2] "" msgstr[3] "" #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You repeated this." -msgstr "Sy tutu zdźělenku hižo wospjetował." +msgstr "Sy to wospjetował." #. 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. @@ -9394,37 +9175,35 @@ 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 +#, php-format 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" +msgstr[0] "%%s je to wospjetował." +msgstr[1] "%%s stej to wospjetowałoj." +msgstr[2] "%%s su to wospjetowali." +msgstr[3] "%%s su to wospjetowali." #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "Pytanske sydło" +msgstr "Ludźi pytać a nalistować" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "Wšitko" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Fullname" msgstr "Dospołne mjeno" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" -msgstr "" +msgstr "URI (Zdaleni wužiwarjo)" #. TRANS: Dropdown field label. -#, fuzzy msgctxt "LABEL" msgid "Search in" -msgstr "Pytanske sydło" +msgstr "Pytać w" #. TRANS: Dropdown field title. msgid "Choose a field to search." @@ -9432,15 +9211,15 @@ msgstr "" #. 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 "%1$s z lisćiny %2$s wotstronić" #. 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 "%1$s lisćinje %2$s přidać" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9449,29 +9228,27 @@ msgstr "" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" msgid "Everyone" -msgstr "" +msgstr "Kóždy" #. TRANS: Option in drop-down of potential addressees. #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Moji kolegojo pola %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "Komu" +msgstr "Komu:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -msgstr "Priwatny" +msgstr "Priwatny?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Njeznaty werb: \"%s\"." +msgstr "Hódnoće njeznaty: \"%s\"." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -9479,10 +9256,9 @@ msgid "Unblock" msgstr "Wotblokować" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" -msgstr "Pěskowy kašćik" +msgstr "Z hrajkanišća wotstronić" #. TRANS: Description for unsandbox form. msgid "Unsandbox this user" @@ -9502,15 +9278,13 @@ msgstr "Tutoho wužiwarja wotskazać" #. TRANS: Button text on unsubscribe form. #. TRANS: Button text for unsubscribing from a list. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Wotskazać" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." -msgstr "Tutoho wužiwarja wotskazać" +msgstr "Tutoho wužiwarja wotskazać." #. 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/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 5252d5643c..7f819ca766 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:55+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" @@ -6275,16 +6275,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6510,7 +6520,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 8cb75cc310..19ebdef71a 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" @@ -6258,16 +6258,26 @@ msgstr "Impossibile processar le URL '%s'" msgid "Robin thinks something is impossible." msgstr "Robin pensa que alique es impossibile." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Nulle file pote esser plus grande que %1$d byte e le file que tu inviava ha %" "2$d bytes. Tenta incargar un version minus grande." @@ -6498,10 +6508,10 @@ msgstr "" "permittite. Tenta usar o deler alcun etiquettas existente." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Il ha jam %1$d o plus personas in le lista %2$s, que es le numero maxime " "permittite. Tenta primo remover alteres del lista." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 61f3fb25b1..9a66eb9cdd 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: it\n" @@ -6431,16 +6431,26 @@ msgstr "Impossibile elaborare l'indirizzo \"%s\"" msgid "Robin thinks something is impossible." msgstr "Si è verificato qualche cosa di impossibile." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Nessun file può superare %1$d byte e il file inviato era di %2$d byte. Prova " "a caricarne una versione più piccola." @@ -6687,7 +6697,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 27e3b0803e..0dfe66b826 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:02+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" @@ -6189,16 +6189,25 @@ msgstr "URL '%s' を処理することができません。" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" #. TRANS: Message given if an upload would exceed user quota. @@ -6422,7 +6431,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index dec78d19a0..99a7adb985 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:03+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ka\n" @@ -6406,16 +6406,25 @@ msgstr "ვერ ვამოუშავებ URL '%s'" msgid "Robin thinks something is impossible." msgstr "რობინი ფიქრობს რაღაც შეუძლებელია." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "ფაილი არ შეიძლება იყოს %1$d ბაიტზე მეტი, თქვენ მიერ გაგზავნილი კი %2$d ბაიტი " "იყო. სცადეთ უფრო პატარა ვერსიის ატვირთვა." @@ -6656,7 +6665,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 13e6c97419..94100463c7 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:05+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" @@ -6186,16 +6186,25 @@ msgstr "'%s' URL을 처리할 수 없습니다" msgid "Robin thinks something is impossible." msgstr "로빈이 뭔가 불가능하다 생각합니다." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" #. TRANS: Message given if an upload would exceed user quota. @@ -6419,10 +6428,10 @@ msgstr "" "하거나 태그를 지우고 새로 만들어 보십시오." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "이미 %2$s 리스트에 들어 있는 사람이 %1$d명 이상 있습니다. 최대값입니다. 먼" "저 다른 사람들을 리스트에서 제거해 보십시오." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 7dd364c9c7..a5ceff6148 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" @@ -6280,16 +6280,26 @@ msgstr "Не можам да ја обработам URL-адресата „%s 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Податотеките не смеат да бидат поголеми од %1$d бајт, а вие испративте " "податотека од %2$d бајти. Подигнете помала верзија." @@ -6528,10 +6538,10 @@ msgstr "" "дозволен број на ознаки. Искористете или избришете некои постоечки ознаки." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Веќе имате %1$d или повеќе луѓе во списокот %2$s, што претставува " "максималниот дозволен број. Најпрвин отстранете некои други од списокот." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 9505e3dfd9..3352f9f6c0 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:12+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:10+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ml\n" @@ -6160,16 +6160,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "ചിലത് അസാധ്യമാണെന്നാണ് റോബിനും സന്ദേശം പരിഭാഷ ചെയ്ത പ്രവീണും കരുതുന്നത്." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6403,7 +6413,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 1b6d52b053..455fd9b0b5 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,7 +1,6 @@ -# Translation of StatusNet - Core to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Core to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # -# Author: Jon Harald Søby # Author: Laaknor # Author: McDutchie # Author: Nghtwlkr @@ -14,16 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:24+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:12+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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" @@ -6361,16 +6359,26 @@ msgstr "Kan ikke behandle URL '%s'" msgid "Robin thinks something is impossible." msgstr "Robin mener at noe er umulig." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6603,7 +6611,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8de69aba90..fe93fa6639 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:20+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" @@ -6320,16 +6320,26 @@ msgstr "Het was niet mogelijk de URL \"%s\" te verwerken." msgid "Robin thinks something is impossible." msgstr "Robin denkt dat iets onmogelijk is." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Bestanden mogen niet groter zijn dan %1$d byte, en uw bestand was %2$d " "bytes. Probeer een kleinere versie te uploaden." @@ -6575,10 +6585,10 @@ msgstr "" "Verwijder bestaande labels om nieuwe labels aan te kunnen maken." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "U hebt al %1$d of meer mensen in de lijst %2$s opgenomen. Meer mensen " "opnemen is niet mogelijk. Verwijder eerst mensen uit de lijst voordat u " diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 8abf17e158..47157e2fd5 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:26+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:16+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ 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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" @@ -6396,16 +6396,27 @@ msgstr "Nie można przetworzyć adresu URL \"%s\"" msgid "Robin thinks something is impossible." msgstr "Robin sądzi, że coś jest niemożliwe." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Żaden plik nie może być większy niż %1$d bajt, a wysłany plik miał %2$d " "bajty. Proszę spróbować wysłać mniejszą wersję." @@ -6658,7 +6669,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 2fb69dcd0c..d761f2a315 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,12 +19,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" @@ -6413,16 +6413,26 @@ msgstr "Não é possível processar a URL '$s'" msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Nenhum ficheiro pode ter mais de %1$d bytes e o que enviou tinha %2$d bytes. " "Tente enviar uma versão mais pequena." @@ -6669,7 +6679,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ef0f84ddcc..52b1ba906d 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:31+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:20+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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" @@ -6335,16 +6335,26 @@ msgstr "Não é possível processar a URL '$s'" msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Nenhum arquivo pode ter mais de %1$d byte e o que você enviou tinha %2$d " "bytes. Tente enviar uma versão menor." @@ -6576,11 +6586,13 @@ msgstr "" "permitidas. Experimente usar ou excluir algumas já existentes." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" +"Você já criou %d ou mais etiquetas, atingindo o número máximo de etiquetas " +"permitidas. Experimente usar ou excluir algumas já existentes." #. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 832f920db6..09c59c2339 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,12 +19,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" @@ -6306,16 +6306,27 @@ msgstr "Невозможно обработать URL «%s»" 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Файл не может быть больше %1$d байт, тогда как отправленный вами файл " "содержал %2$d байт. Попробуйте загрузить меньшую версию." @@ -6554,10 +6565,10 @@ msgstr "" "некоторые старые теги." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "В вашем списке %2$s уже отмечено %1$d или более пользователей, что " "составляет разрешённый лимит. Попробуйте удалить кого-нибудь из списка." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 43e239297b..fa9e3252aa 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-12-19 00:00+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -7325,23 +7325,34 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #: classes/File.php:223 #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#: classes/File.php:230 +#, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" 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:236 +#: classes/File.php:243 #, 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." @@ -7350,7 +7361,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:248 +#: classes/File.php:255 #, 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." @@ -7358,7 +7369,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:295 classes/File.php:310 +#: classes/File.php:302 classes/File.php:317 msgid "Invalid filename." msgstr "" @@ -7603,7 +7614,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b49c7f2780..4df8a037c1 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:24+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" @@ -6253,16 +6253,26 @@ msgstr "Webbadressen '%s' kan inte bearbeta" msgid "Robin thinks something is impossible." msgstr "Robin tycker att något är omöjligt" -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#. TRANS: %1$s is used for plural. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Ingen fil får vara större än %1$d byte och den fil du skickade var %2$d " "byte. Försök att ladda upp en mindre version." @@ -6495,10 +6505,10 @@ msgstr "" "antalet taggar. Försök använda eller stryka några befintliga taggar." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Du har redan %1$d eller flera personer i listan %2$s, vilket är den högsta " "tillåtna antalet. Prova ta bort andra från listan först." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index fcc1c09715..23880d7856 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:37+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:26+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" @@ -6232,16 +6232,26 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "ఏదో అసాధ్యమని రాబిన్ అనుకుంటున్నాడు." +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. +#, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + #. 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. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... #, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" msgstr[1] "" @@ -6475,7 +6485,7 @@ msgstr "" #, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index a1d2555322..29fd0dcacb 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:38+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" @@ -6464,16 +6464,26 @@ msgstr "Hindi maisagawa ang URL na '%s'" msgid "Robin thinks something is impossible." msgstr "Iniisip ni Robin na may isang bagay na hindi talaga maaaring mangyari." -#. 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Walang talaksan na maaaring maging mas malaki pa kaysa %1$d byte at ang " "talaksang nais mong ipadala ay %2$d mga byte. Subukang magkarga ng isang mas " @@ -6719,10 +6729,10 @@ msgstr "" "sa umiiral na mga tatak.}}" #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "Naroroon na si %1$d o mahigit pang mga tao sa loob ng talaang %2$s, na " "siyang pinakamataas na pinahihintulutang bilang. Subukan munang tanggalin na " diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 836f42ddab..46d5a2ba93 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:40+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" @@ -6326,16 +6326,27 @@ msgstr "Неможливо обробити URL «%s»" 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "" "Файл не може бути більшим за %1$d байт, а те, що ви хочете надіслати, важить " "%2$d байтів. Спробуйте завантажити меншу версію." @@ -6571,10 +6582,10 @@ msgstr "" "теґи." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "У вашому списку %2$s вже зазначено %1$d або більше користувачів, що " "становить дозволений ліміт. Спробуйте спочатку когось видалити зі списку." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 24bc292aa2..5ec48eeeeb 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,13 +18,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:42+0000\n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" @@ -6098,16 +6098,25 @@ msgstr "不能处理 URL “%s”" 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. +#. TRANS: Message used to be inserted as %2$s in the text "No file may +#. TRANS: be larger than %1$d byte and the file you sent was %2$s.". +#. TRANS: %1$d is the number of bytes of an uploaded file. #, php-format +msgid "%1$d byte" +msgid_plural "%1$d bytes" +msgstr[0] "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d (used for plural) is the byte limit for uploads, +#. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have +#. TRANS: gettext support multiple plurals in the same message, unfortunately... +#, fuzzy, php-format msgid "" -"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d byte and the file you sent was %2$s. Try to " +"upload a smaller version." msgid_plural "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." +"No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " +"upload a smaller version." msgstr[0] "文件不能大于%1$d字节,而你上传的文件是%2$d字节。换个小点的试一下。" #. TRANS: Message given if an upload would exceed user quota. @@ -6325,10 +6334,10 @@ msgstr "" "标签。" #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, php-format +#, fuzzy, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " -"allowed number.Try unlisting others first." +"allowed number. Try unlisting others first." msgstr "" "你已经有了 %1$d 或更多的人到列表 %2$s,达到了允许添加的人数上限。试下将其他人" "从列表中删除。" diff --git a/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po b/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..38604305c7 --- /dev/null +++ b/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po @@ -0,0 +1,117 @@ +# Translation of StatusNet - Activity to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:08+0000\n" +"Language-Team: Lithuanian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-activity\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\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 prisijungė prie grupė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 pradėjo sekti %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 "" + +#. 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 nustojo sekti %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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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) prisijungė prie grupė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 paliko grupę %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) paliko grupę %3$s (%4$s)." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "" diff --git a/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..55d84fcb7f --- /dev/null +++ b/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - Adsense to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# 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-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:11+0000\n" +"Language-Team: Lithuanian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Menu item title/tooltip +msgid "AdSense configuration" +msgstr "AdSense konfigūracija" + +#. 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 "Įskiepiai Google AdSense pridėjimui į StatusNet svetaines." + +#. 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 nustatymui šiai StatusNet svetainei" + +#. TRANS: Field label in AdSense administration panel. +msgid "Client ID" +msgstr "Kliento ID" + +#. TRANS: Field title in AdSense administration panel. +msgid "Google client ID." +msgstr "Google kliento ID." + +#. TRANS: Field label in AdSense administration panel. +msgid "Ad script URL" +msgstr "" + +#. TRANS: Field title in AdSense administration panel. +msgid "Script URL (advanced)." +msgstr "" + +#. TRANS: Field label in AdSense administration panel. +msgid "Medium rectangle" +msgstr "" + +#. TRANS: Field title in AdSense administration panel. +msgid "Medium rectangle slot code." +msgstr "" + +#. TRANS: Field label in AdSense administration panel. +msgid "Rectangle" +msgstr "" + +#. 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 "" + +#. 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 "Išsaugoti" + +#. TRANS: Button title to save settings in AdSense administration panel. +msgid "Save AdSense settings." +msgstr "Išsaugoti AdSense nustatymus." diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index cf70d6ebed..e89fe4628a 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Adsense to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Adsense to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:25+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:46: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..02a9c5ac77 --- /dev/null +++ b/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:22+0000\n" +"Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%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 "Prieiga uždrausta." diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 345b332f15..7d7a02f13e 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - BitlyUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - BitlyUrl to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:28+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index fee40c4636..cf20faf07d 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - BlankAd to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - BlankAd to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:33+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po b/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..ba146dd3f1 --- /dev/null +++ b/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po @@ -0,0 +1,97 @@ +# Translation of StatusNet - Blog to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:36+0000\n" +"Language-Team: Lithuanian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-blog\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\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 "Turite būti prisijungęs, kad galėtumėte rašyti dienoraščio įrašą." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing a title. +msgid "Title required." +msgstr "Pavadinimas būtinas." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "Turinys būtinas." + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "Dienoraščio įrašas išsaugotas" + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "" + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "Dienoraštis" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Per daug aktyvių objektui." + +#. 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 "Tokio įrašo nėra." + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Title" +msgstr "" + +#. 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 "Tekstas" + +#. 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 "Išsaugoti" diff --git a/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..3aa265fc3d --- /dev/null +++ b/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - BlogspamNet to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:37+0000\n" +"Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Server exception thrown when blogspam.net returns error status. +#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no period). +#, php-format +msgid "Error from %1$s: %2$s" +msgstr "Klaida iš %1$s: %2$s" + +#. TRANS: Server exception thrown when blogspam.net returns spam status. +#. TRANS: Does not end with period because of unknown contents for %s (spam match). +#, php-format +msgid "Spam checker results: %s" +msgstr "Šlamštas tikrintuvo rezultatai: %s" + +#. TRANS: Server exception thrown when blogspam.net returns an unexpected status. +#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no period). +#, php-format +msgid "Unexpected response from %1$s: %2$s" +msgstr "Netikėtas atsakymas iš %1$s: %2$s" + +#. TRANS: Plugin description. +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 451507da9c..f9db9506ff 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - BlogspamNet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - BlogspamNet to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:59+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:37+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index d2713c056c..47e9136889 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - CacheLog to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - CacheLog to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:44+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 209d86829d..23669c0225 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - ClientSideShorten to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - ClientSideShorten to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:49+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 (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 9f81291b5e..f0f51a5db2 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Comet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Comet to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:46: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index b9707d50c4..030f3edba4 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - DirectionDetector to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - DirectionDetector to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46:52+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index b148b28079..ac1bc1e365 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - DiskCache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - DiskCache to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:46: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-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 887f6ec84f..6bb0ca65a0 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Disqus to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Disqus to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:00+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po index 90d127c754..e7554337d7 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - DomainStatusNetwork to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - DomainStatusNetwork to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:33+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:01+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..21fd0e7390 --- /dev/null +++ b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,82 @@ +# Translation of StatusNet - DomainWhitelist to Lithuanian (Lietuvių) +# Exported from translatewiki.net +# +# Author: Eitvys200 +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:04+0000\n" +"Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: lt\n" +"X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\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 "Elektroninio pašto adresas turi būti šiame domene: %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 "Elektroninio pašto adresas turi būti viename iš šių domenų: %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 "Šis el. pašto adresas neleidžiamas šioje svetainėje." + +#. TRANS: Title for invitiation deletion dialog. +msgid "Confirmation Required" +msgstr "Reikalingas Patvirtinimas" + +#. TRANS: Confirmation text for invitation deletion dialog. +msgid "Really delete this invitation?" +msgstr "" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "" + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "Asmeninis pranešimas" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#. TRANS: Link description to action to add another item to a list. +msgid "Add another item" +msgstr "Pridėti kitą failą" + +#. TRANS: Send button for inviting friends. +msgctxt "BUTTON" +msgid "Send" +msgstr "Siųsti" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "Siųsti kvietimus." diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 262ed4b442..26cc7c91b2 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Echo to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Echo to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:05+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index 60c2106d98..a8b73444e8 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - EmailAuthentication to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - EmailAuthentication to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index 49c20cb37c..6092b601e9 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -213,7 +213,7 @@ msgstr "Heure de fin de l'événement." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Where?" -msgstr "" +msgstr "Où ?" #. TRANS: Field title on event form. msgid "Event location." @@ -410,7 +410,7 @@ msgstr "L'événement doit avoir une heure de fin." #. TRANS: Client exception thrown when trying to post an event with an invalid URL. msgid "URL must be valid." -msgstr "" +msgstr "L’URL doit être valide." #. TRANS: Field label for event description. msgid "Time:" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 2e3869124c..147b9376cd 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" @@ -36,11 +36,11 @@ msgstr "(1 hora)" #, php-format msgid "(%.1f hours)" -msgstr "" +msgstr "(%.1f horas)" #, php-format msgid "(%d hours)" -msgstr "" +msgstr "(%d horas)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 533211868b..46a3a100fa 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - FirePHP to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - FirePHP to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:35+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index ebdd193898..aaa31ca546 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - GeoURL to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - GeoURL to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:32+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:42+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 872ce3e804..4c0b28319e 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - GoogleAnalytics to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - GoogleAnalytics to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47:44+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 0a3b946347..92419aafe9 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Imap to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Imap to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 4867b0d692..779ea987b6 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - InfiniteScroll to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - InfiniteScroll to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:47: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:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index a025062dda..f7234f74a8 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - LilUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - LilUrl to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:05+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 3645f59b27..c982e196d6 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Linkback to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Linkback to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 86f15abe9c..f55299293d 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Mapstraction to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Mapstraction to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 266184b8f4..d436157ccf 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Memcache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Memcache to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:14+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 8bb1fc8487..ddc44911ed 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Memcached to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Memcached to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 27eba85aff..75feb14867 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Meteor to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Meteor to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index d8f322a796..2841da3313 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Minify to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Minify to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:48: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..5e02de8763 --- /dev/null +++ b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - MobileProfile to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Fitoschido +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:20+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" +"X-Generator: MediaWiki 1.19alpha (r107479); 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-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 "Esta página no está disponible en el tipo de medio que aceptas." + +#. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. +msgid "Switch to desktop site layout." +msgstr "Cambiar al formato de escritorio del sitio." + +#. TRANS: Link to switch site layout from desktop to mobile mode. Appears at very bottom of page. +msgid "Switch to mobile site layout." +msgstr "Cambiar al formato para móviles del sitio." + +#. TRANS: Plugin description. +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index 08b1f8f580..60153514a3 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - MobileProfile to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - MobileProfile to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:21+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index ae67bd2f0f..adfe4ed014 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:59+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -62,4 +62,4 @@ msgstr "" #. TRANS: Label for access to remote profile options. msgid "Remote profile options..." -msgstr "Options de profil distantes..." +msgstr "Options de profil distant..." diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index a9fdc31c15..d5a516be84 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - NoticeTitle to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - NoticeTitle to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:30+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..fabaa98731 --- /dev/null +++ b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - OMB to French (Français) +# Exported from translatewiki.net +# +# Author: Od1n +# -- +# 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-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:32+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r107479); 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-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 "S’abonner" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Accepter" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Rejeter" + +#. 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/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index a66c0a859a..ba3bdc11a1 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Fujnky +# Author: George Animal # Author: Giftpflanze # Author: Michael # Author: Tiin @@ -12,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:52+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" @@ -631,9 +632,8 @@ msgstr "Konnte Remotebenutzer %1$s nicht aus der Gruppe %2$s entfernen." #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error. -#, fuzzy msgid "No such list." -msgstr "Unbekannter Benutzer." +msgstr "Liste nicht gefunden." #. TRANS: Client error displayed when trying to send a message to a remote list. #, fuzzy diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 0da37ae517..0ee3fab843 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:53+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -412,7 +412,7 @@ msgstr "Déjà abonné !" #. TRANS: OStatus remote subscription dialog error. msgid "Remote subscription failed!" -msgstr "Ĺ’abonnement distant a échoué !" +msgstr "L’abonnement distant a échoué !" #. 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." diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 40f8b8aa8a..a2a6a77b62 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - OpenExternalLinkTarget to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - OpenExternalLinkTarget to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:16+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:48:33+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index e94bf75820..441eeacaf6 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - PiwikAnalytics to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - PiwikAnalytics to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:05+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 235b4d9018..c650513639 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - PostDebug to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - PostDebug to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 171a58ab75..7c66677248 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - PtitUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - PtitUrl to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:14+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index ceefefa4c8..caf84e5f05 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -260,26 +260,22 @@ msgid "Answer" msgstr "Réponse" #. TRANS: Field label for a new question. -#, fuzzy msgctxt "LABEL" msgid "Title" msgstr "Titre" #. TRANS: Field title for a new question. -#, fuzzy msgid "The title of your question." -msgstr "Titre de votre question" +msgstr "Le titre de votre question." #. TRANS: Field label for question details. -#, fuzzy msgctxt "LABEL" msgid "Description" msgstr "Description" #. TRANS: Field title for question details. -#, fuzzy msgid "Your question in detail." -msgstr "Votre question en détail" +msgstr "Votre question en détail." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index eddb4171be..bda9481279 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Peter17 +# Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" @@ -37,12 +38,12 @@ msgstr "" #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" msgid "Play" -msgstr "Jouer" +msgstr "Lecture" #. TRANS: Tooltip for realtime view "play" button. msgctxt "TOOLTIP" msgid "Play" -msgstr "Jouer" +msgstr "Lecture" #. TRANS: Text label for realtime view "pause" button msgctxt "BUTTON" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 908da69a4d..8e8413fef4 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - Recaptcha to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Recaptcha to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 98551424fd..da5b72f5fe 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - ReverseUsernameAuthentication to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - ReverseUsernameAuthentication to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:26+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:30+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 55d5ff4ba8..abce895bf4 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - SimpleUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - SimpleUrl to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index c48e7110df..eac6011cce 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - TabFocus to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - TabFocus to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:52+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index db932d300f..c6b0659077 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - TightUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - TightUrl to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 7d3ac9cefa..f21183c658 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - TinyMCE to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - TinyMCE to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:46+0000\n" +"PO-Revision-Date: 2011-12-28 11:49:57+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 1c05001ae2..e8b2d8b1c2 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - UserLimit to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - UserLimit to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:50: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index a797165181..609ee8d1ee 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - XCache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - XCache to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-12-28 11:45+0000\n" +"PO-Revision-Date: 2011-12-28 11:50:14+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" +"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" "30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" From eb05bdfcaf7159e35d162b49c7625066a5c040f8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Dec 2011 22:16:22 -0800 Subject: [PATCH 100/134] remove debug message I'm sick of seeing --- actions/userrss.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/actions/userrss.php b/actions/userrss.php index 85ea2fd7fa..99330af57f 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -29,8 +29,6 @@ class UserrssAction extends Rss10Action function prepare($args) { - common_debug("UserrssAction"); - parent::prepare($args); $nickname = $this->trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); From c9fbe2ead7e789e690ebcb37336ad0bf9adcd25f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Dec 2011 22:23:50 -0800 Subject: [PATCH 101/134] remove common_debug() from search.json, search.atom --- actions/apisearchatom.php | 2 -- actions/apisearchjson.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/actions/apisearchatom.php b/actions/apisearchatom.php index 32ff918da3..075a4df83d 100644 --- a/actions/apisearchatom.php +++ b/actions/apisearchatom.php @@ -92,8 +92,6 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction */ function prepare($args) { - common_debug("in apisearchatom prepare()"); - parent::prepare($args); $this->query = $this->trimmed('q'); diff --git a/actions/apisearchjson.php b/actions/apisearchjson.php index dd442b7f24..79b2666554 100644 --- a/actions/apisearchjson.php +++ b/actions/apisearchjson.php @@ -63,8 +63,6 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction */ function prepare($args) { - common_debug("apisearchjson prepare()"); - parent::prepare($args); $this->query = $this->trimmed('q'); From 9092eb55355a6b89845095ec5585dd0c7aac5c66 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 30 Dec 2011 23:09:17 -0800 Subject: [PATCH 102/134] throw exception on sphinx search error --- plugins/SphinxSearch/sphinxsearch.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/SphinxSearch/sphinxsearch.php b/plugins/SphinxSearch/sphinxsearch.php index 46b5e3e28a..607ac76d27 100644 --- a/plugins/SphinxSearch/sphinxsearch.php +++ b/plugins/SphinxSearch/sphinxsearch.php @@ -65,6 +65,9 @@ class SphinxSearch extends SearchEngine function query($q) { $result = $this->sphinx->query($q, $this->remote_table()); + if ($result === false) { + throw new ServerException($this->sphinx->getLastError()); + } if (!isset($result['matches'])) return false; $id_set = join(', ', array_keys($result['matches'])); $this->target->whereAdd("id in ($id_set)"); From 70aada690b1ea3280878ab883ab616e7a39a0584 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 01:56:26 -0800 Subject: [PATCH 103/134] add objectType, content to activity objects in JSON --- lib/activityobject.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/activityobject.php b/lib/activityobject.php index 7204980d40..4c11be8597 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -692,9 +692,6 @@ class ActivityObject // id $object['id'] = $this->id; - // - // XXX: Should we use URL here? or a crazy tag URI? - $object['id'] = $this->id; if ($this->type == ActivityObject::PERSON || $this->type == ActivityObject::GROUP) { @@ -737,14 +734,17 @@ class ActivityObject // We can probably use the whole schema URL here but probably the // relative simple name is easier to parse // @fixme this breaks extension URIs - $object['type'] = substr($this->type, strrpos($this->type, '/') + 1); - - // published (probably don't need. Might be useful for repeats.) + $object['objectType'] = substr($this->type, strrpos($this->type, '/') + 1); // summary $object['summary'] = $this->summary; - // udpated (probably don't need this) + // summary + $object['content'] = $this->content; + + // published (probably don't need. Might be useful for repeats.) + + // updated (probably don't need this) // TODO: upstreamDuplicates From 6ca729803b1e8023f4e130cae7e8a4df6f9a5c84 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 02:01:51 -0800 Subject: [PATCH 104/134] activity streams json 'count' => 'totalItems' --- lib/activitystreamjsondocument.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/activitystreamjsondocument.php b/lib/activitystreamjsondocument.php index 6d17075931..c67fc5a42f 100644 --- a/lib/activitystreamjsondocument.php +++ b/lib/activitystreamjsondocument.php @@ -168,7 +168,7 @@ class ActivityStreamJSONDocument extends JSONActivityCollection $this->doc['generator'] = 'StatusNet ' . STATUSNET_VERSION; // extension $this->doc['title'] = $this->title; $this->doc['url'] = $this->url; - $this->doc['count'] = $this->count; + $this->doc['totalItems'] = $this->count; $this->doc['items'] = $this->items; $this->doc['links'] = $this->links; // extension return json_encode(array_filter($this->doc)); // filter out empty elements From bff89bc864dadf90728ea802825d7da445cd9158 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 02:31:26 -0800 Subject: [PATCH 105/134] catch up to spec --- lib/activity.php | 44 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/lib/activity.php b/lib/activity.php index 5234a54c03..99c76c9126 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -389,9 +389,32 @@ class Activity $activity['geopoint'] = array( 'type' => 'Point', - 'coordinates' => array($loc->lat, $loc->lon) + 'coordinates' => array($loc->lat, $loc->lon), + 'deprecated' => true, ); + $lat = $loc->lat + 0.0; + $lon = $loc->lon + 0.0; + + $position = (($lat > 0.0) ? ("+".$lat) : $lat) . "." . + (($lon > 0.0) ? ("+".$lon) : $lon) . "/"; + + $activity['location'] = array( + 'objectType' => 'place', + 'position' => $position + ); + + $name = $loc->getName(); + + if ($name) { + $activity['location']['displayName'] = $name; + } + + $url = $loc->getURL(); + + if ($url) { + $activity['location']['url'] = $url; + } } $activity['to'] = $this->context->getToArray(); @@ -487,15 +510,20 @@ class Activity /* Purely extensions hereafter */ - $tags = array(); - - // Use an Activity Object for term? Which object? Note? - foreach ($this->categories as $cat) { - $tags[] = $cat->term; + if ($activity['verb'] == 'post') { + $tags = array(); + foreach ($this->categories as $cat) { + if (mb_strlen($cat->term) > 0) { + // Couldn't figure out which object type to use, so... + $tags[] = array('objectType' => 'http://activityschema.org/object/hashtag', + 'displayName' => $cat->term); + } + } + if (count($tags) > 0) { + $activity['object']['tags'] = $tags; + } } - $activity['tags'] = $tags; - // XXX: a bit of a hack... Since JSON isn't namespaced we probably // shouldn't be using 'statusnet:notice_info', but this will work // for the moment. From d22fc7423ce2365e229fb41e0dae97f069ec2214 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 08:56:54 -0800 Subject: [PATCH 106/134] Hide posts by silenced users --- classes/Notice.php | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 9ee5696e3f..38e41d29f1 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2381,6 +2381,22 @@ class Notice extends Managed_DataObject $scope = self::defaultScope(); } + $author = $this->getProfile(); + + // Author is always in scope + + if ($author->id == $profile->id) { + return true; + } + + // If the author is silenced, only show to + // folks who can un-silence; note ignores scope + + if ($author->hasRole(Profile_role::SILENCED) && + (empty($profile) || !$profile->hasRight(Right::SILENCEUSER))) { + return false; + } + // If there's no scope, anyone (even anon) is in scope. if ($scope == 0) { @@ -2393,12 +2409,6 @@ class Notice extends Managed_DataObject return false; } - // Author is always in scope - - if ($this->profile_id == $profile->id) { - return true; - } - // Only for users on this site if ($scope & Notice::SITE_SCOPE) { @@ -2445,7 +2455,6 @@ class Notice extends Managed_DataObject // Only for followers of the author if ($scope & Notice::FOLLOWER_SCOPE) { - $author = $this->getProfile(); if (!Subscription::exists($profile, $author)) { return false; } From 7bb59ad2a154c75949d856c84dced71b2fe59a20 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:09:07 -0800 Subject: [PATCH 107/134] don't show profile page of silenced users --- actions/showstream.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/actions/showstream.php b/actions/showstream.php index a3b1794313..4a7d758380 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -63,6 +63,15 @@ class ShowstreamAction extends ProfileAction $p = Profile::current(); + // Only the user him/herself, or someone with the power to unsilence, + // can view the page of a silenced user. + + if (($this->profile->hasRole(Profile_role::SILENCED)) && + (empty($p) || (($p->id != $this->profile->id) && (!$p->hasRight(Right::SILENCEUSER))))) { + throw new ServerException(sprintf(_("User %s has been silenced."), $this->profile->nickname), + 403); + } + if (empty($this->tag)) { $stream = new ProfileNoticeStream($this->profile, $p); } else { From 04f71a42d397fe4ed2737f64844925894ecbd7db Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:15:32 -0800 Subject: [PATCH 108/134] when silencing, blow scope for not-logged-in users --- classes/Profile.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/classes/Profile.php b/classes/Profile.php index 3b3e43025b..59a2e0eced 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1139,11 +1139,20 @@ class Profile extends Managed_DataObject function silence() { $this->grantRole(Profile_role::SILENCED); + $this->blowRecentNoticeScope(); } function unsilence() { $this->revokeRole(Profile_role::SILENCED); + $this->blowRecentNoticeScope(); + } + + function blowRecentNoticeScope() { + $notice = $this->getNotices(0, CachingNoticeStream::CACHE_WINDOW); + while ($notice->fetch()) { + self::blow(sprintf('notice:in-scope-for:%d:null', $notice->id)); + } } /** From 70f9d41c4cc90eeb27d99223567fa5a741082a34 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:34:42 -0800 Subject: [PATCH 109/134] Revert "Hide posts by silenced users" This reverts commit d22fc7423ce2365e229fb41e0dae97f069ec2214. --- classes/Notice.php | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 38e41d29f1..9ee5696e3f 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2381,22 +2381,6 @@ class Notice extends Managed_DataObject $scope = self::defaultScope(); } - $author = $this->getProfile(); - - // Author is always in scope - - if ($author->id == $profile->id) { - return true; - } - - // If the author is silenced, only show to - // folks who can un-silence; note ignores scope - - if ($author->hasRole(Profile_role::SILENCED) && - (empty($profile) || !$profile->hasRight(Right::SILENCEUSER))) { - return false; - } - // If there's no scope, anyone (even anon) is in scope. if ($scope == 0) { @@ -2409,6 +2393,12 @@ class Notice extends Managed_DataObject return false; } + // Author is always in scope + + if ($this->profile_id == $profile->id) { + return true; + } + // Only for users on this site if ($scope & Notice::SITE_SCOPE) { @@ -2455,6 +2445,7 @@ class Notice extends Managed_DataObject // Only for followers of the author if ($scope & Notice::FOLLOWER_SCOPE) { + $author = $this->getProfile(); if (!Subscription::exists($profile, $author)) { return false; } From 25f1e169520568bcfa61eaf281eee2fbb1f9b6e0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:34:59 -0800 Subject: [PATCH 110/134] Revert "don't show profile page of silenced users" This reverts commit 7bb59ad2a154c75949d856c84dced71b2fe59a20. --- actions/showstream.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/actions/showstream.php b/actions/showstream.php index 4a7d758380..a3b1794313 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -63,15 +63,6 @@ class ShowstreamAction extends ProfileAction $p = Profile::current(); - // Only the user him/herself, or someone with the power to unsilence, - // can view the page of a silenced user. - - if (($this->profile->hasRole(Profile_role::SILENCED)) && - (empty($p) || (($p->id != $this->profile->id) && (!$p->hasRight(Right::SILENCEUSER))))) { - throw new ServerException(sprintf(_("User %s has been silenced."), $this->profile->nickname), - 403); - } - if (empty($this->tag)) { $stream = new ProfileNoticeStream($this->profile, $p); } else { From 3117c380442a02f572c0ae63035fa7457e8b106f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:35:22 -0800 Subject: [PATCH 111/134] Revert "when silencing, blow scope for not-logged-in users" This reverts commit 04f71a42d397fe4ed2737f64844925894ecbd7db. --- classes/Profile.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 59a2e0eced..3b3e43025b 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1139,20 +1139,11 @@ class Profile extends Managed_DataObject function silence() { $this->grantRole(Profile_role::SILENCED); - $this->blowRecentNoticeScope(); } function unsilence() { $this->revokeRole(Profile_role::SILENCED); - $this->blowRecentNoticeScope(); - } - - function blowRecentNoticeScope() { - $notice = $this->getNotices(0, CachingNoticeStream::CACHE_WINDOW); - while ($notice->fetch()) { - self::blow(sprintf('notice:in-scope-for:%d:null', $notice->id)); - } } /** From 3d87176ecec357a9d0812c50a7f50376eb465b03 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 10:26:07 -0800 Subject: [PATCH 112/134] Better position formatting --- lib/activity.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/activity.php b/lib/activity.php index 99c76c9126..9f0186c650 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -393,15 +393,9 @@ class Activity 'deprecated' => true, ); - $lat = $loc->lat + 0.0; - $lon = $loc->lon + 0.0; - - $position = (($lat > 0.0) ? ("+".$lat) : $lat) . "." . - (($lon > 0.0) ? ("+".$lon) : $lon) . "/"; - $activity['location'] = array( 'objectType' => 'place', - 'position' => $position + 'position' => sprintf("%+02.5F.%+03.5F/", $loc->lat, $loc->lon); ); $name = $loc->getName(); From 8c9d96781473af49f73a8cd430e6d12f1bde9d2e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 19:05:41 -0800 Subject: [PATCH 113/134] syntax error in position in activity streams json --- lib/activity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/activity.php b/lib/activity.php index 9f0186c650..d94b168004 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -395,7 +395,7 @@ class Activity $activity['location'] = array( 'objectType' => 'place', - 'position' => sprintf("%+02.5F.%+03.5F/", $loc->lat, $loc->lon); + 'position' => sprintf("%+02.5F.%+03.5F/", $loc->lat, $loc->lon), ); $name = $loc->getName(); From 71fa1d246266be6cae29b1849343286baa69c4de Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 3 Jan 2012 11:03:18 -0800 Subject: [PATCH 114/134] slight improvement in location output --- lib/activity.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/activity.php b/lib/activity.php index d94b168004..e352baf639 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -395,7 +395,9 @@ class Activity $activity['location'] = array( 'objectType' => 'place', - 'position' => sprintf("%+02.5F.%+03.5F/", $loc->lat, $loc->lon), + 'position' => sprintf("%+02.5F%+03.5F/", $loc->lat, $loc->lon), + 'lat' => $loc->lat, + 'lon' => $loc->lon ); $name = $loc->getName(); From e3f06ee220cd33beca20aa7c0ab64ed9ae08bf79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 10 Jan 2012 10:51:36 -0500 Subject: [PATCH 115/134] Use X-Client header for IP for load-balancers --- plugins/RegisterThrottle/RegisterThrottlePlugin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 7ad7809bac..1e686bd62b 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -223,6 +223,7 @@ class RegisterThrottlePlugin extends Plugin private function _getIpAddress() { $keys = array('HTTP_X_FORWARDED_FOR', + 'HTTP_X_CLIENT', 'CLIENT-IP', 'REMOTE_ADDR'); From 98acec74f5c19050163c9233588a6fb46bd0c52d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 20 Jan 2012 10:34:59 -0500 Subject: [PATCH 116/134] rel=me for homepage in profile block --- lib/profileblock.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/profileblock.php b/lib/profileblock.php index 1162b78422..eb19a1a9aa 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -127,6 +127,7 @@ abstract class ProfileBlock extends Widget if (!empty($homepage)) { $this->out->element('a', array('href' => $homepage, + 'rel' => 'me', 'class' => 'profile_block_homepage'), $homepage); } From cebb565f187ef034aa9d8849bab129e589c228ec Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 20 Jan 2012 20:07:45 +0100 Subject: [PATCH 117/134] Localisation updates from http://translatewiki.net. --- locale/be-tarask/LC_MESSAGES/statusnet.po | 123 ++++++++++-------- locale/br/LC_MESSAGES/statusnet.po | 48 +++---- locale/ca/LC_MESSAGES/statusnet.po | 10 +- locale/de/LC_MESSAGES/statusnet.po | 106 +++++++-------- locale/es/LC_MESSAGES/statusnet.po | 10 +- locale/eu/LC_MESSAGES/statusnet.po | 20 +-- locale/fr/LC_MESSAGES/statusnet.po | 91 +++++-------- locale/fur/LC_MESSAGES/statusnet.po | 36 +++-- locale/gl/LC_MESSAGES/statusnet.po | 10 +- locale/he/LC_MESSAGES/statusnet.po | 28 ++-- locale/hsb/LC_MESSAGES/statusnet.po | 57 ++++---- locale/hu/LC_MESSAGES/statusnet.po | 11 +- locale/ia/LC_MESSAGES/statusnet.po | 10 +- locale/ko/LC_MESSAGES/statusnet.po | 9 +- locale/mk/LC_MESSAGES/statusnet.po | 10 +- locale/nl/LC_MESSAGES/statusnet.po | 10 +- locale/pl/LC_MESSAGES/statusnet.po | 9 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 9 +- locale/ru/LC_MESSAGES/statusnet.po | 10 +- locale/sv/LC_MESSAGES/statusnet.po | 10 +- locale/tl/LC_MESSAGES/statusnet.po | 10 +- locale/uk/LC_MESSAGES/statusnet.po | 10 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 44 +++---- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 15 +-- plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 10 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/es/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/gl/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/lt/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 10 +- plugins/Echo/locale/eu/LC_MESSAGES/Echo.po | 31 +++++ .../locale/fr/LC_MESSAGES/EmailReminder.po | 53 ++++++++ plugins/Event/locale/ar/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/eu/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 14 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 10 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 10 +- .../locale/eu/LC_MESSAGES/Geonames.po | 10 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/es/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 10 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/gl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 10 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 18 +-- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/de/LC_MESSAGES/OMB.po | 15 ++- plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 13 +- plugins/OMB/locale/fr/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/gl/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 10 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 10 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 29 ++--- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 18 +-- plugins/QnA/locale/gl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 10 +- .../locale/af/LC_MESSAGES/Realtime.po | 10 +- .../locale/ar/LC_MESSAGES/Realtime.po | 10 +- .../locale/br/LC_MESSAGES/Realtime.po | 10 +- .../locale/ca/LC_MESSAGES/Realtime.po | 10 +- .../locale/de/LC_MESSAGES/Realtime.po | 10 +- .../locale/fr/LC_MESSAGES/Realtime.po | 10 +- .../locale/gl/LC_MESSAGES/Realtime.po | 10 +- .../locale/ia/LC_MESSAGES/Realtime.po | 10 +- .../locale/lv/LC_MESSAGES/Realtime.po | 10 +- .../locale/mk/LC_MESSAGES/Realtime.po | 10 +- .../locale/ne/LC_MESSAGES/Realtime.po | 10 +- .../locale/nl/LC_MESSAGES/Realtime.po | 10 +- .../locale/pl/LC_MESSAGES/Realtime.po | 10 +- .../locale/sv/LC_MESSAGES/Realtime.po | 10 +- .../locale/tl/LC_MESSAGES/Realtime.po | 10 +- .../locale/tr/LC_MESSAGES/Realtime.po | 10 +- .../locale/uk/LC_MESSAGES/Realtime.po | 10 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 11 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 14 +- 123 files changed, 946 insertions(+), 866 deletions(-) create mode 100644 plugins/Echo/locale/eu/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index 3a16129c4c..1ef04c8c81 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:19+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:09+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" @@ -5356,7 +5356,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -6295,6 +6295,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6535,6 +6536,7 @@ msgstr "" "Вы ўжо стварылі %d ці болей тэгаў, што зьяўляецца дазволенай колькасьцю " "тэгаў. Паспрабуйце выкарыстаць ці выдаліць некаторыя існуючыя тэгі." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -6587,151 +6589,152 @@ msgstr "Немагчыма выдаліць падпіску." #. TRANS: Activity title when subscribing to another person. msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Сачыць" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #, php-format msgid "%1$s is now following %2$s." -msgstr "" +msgstr "%1$s цяпер сочыць за %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #, php-format msgid "Welcome to %1$s, @%2$s!" -msgstr "" +msgstr "Вітаем на %1$s, @%2$s!" #. TRANS: Exception thrown when trying view "repeated to me". msgid "Not implemented since inbox change." -msgstr "" +msgstr "Не рэалізавана з моманту зьмены ўваходзячых паведамленьняў." #. TRANS: Server exception. msgid "No single user defined for single-user mode." -msgstr "" +msgstr "Не вызначаны карыстальнік для рэжыму аднаго карыстальніка." #. TRANS: Server exception. msgid "Single-user mode code called when not enabled." -msgstr "" +msgstr "Выкліканы рэжым аднаго карыстальніка, калі не ўключаны." #. TRANS: Information on password recovery form if no known username or e-mail address was specified. msgid "No user with that email address or username." -msgstr "" +msgstr "Няма карыстальнікаў з такім адрасам электроннай пошты ці іменем." #. 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 "" +"Няма зарэгістраваных адрасоў электроннай пошты для гэтага карыстальніка." #. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. msgid "Error saving address confirmation." -msgstr "" +msgstr "Памылка захаваньня пацьверджаньня адрасу." #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." -msgstr "" +msgstr "Немагчыма стварыць групу." #. TRANS: Server exception thrown when updating a group URI failed. msgid "Could not set group URI." -msgstr "" +msgstr "Немагчыма ўстанавіць URI групы." #. TRANS: Server exception thrown when setting group membership failed. msgid "Could not set group membership." -msgstr "" +msgstr "Немагчыма ўстанавіць удзел у групе." #. TRANS: Server exception thrown when saving local group information failed. msgid "Could not save local group info." -msgstr "" +msgstr "Немагчыма захаваць інфармацыю пра лякальную групу." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. #, php-format msgid "Cannot locate account %s." -msgstr "" +msgstr "Немагчыма знайсьці рахунак %s." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. #, php-format msgid "Cannot find XRD for %s." -msgstr "" +msgstr "Немагчыма знайсьці XRD для %s." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. #, php-format msgid "No AtomPub API service for %s." -msgstr "" +msgstr "Няма сэрвісу AtomPub API для %s." #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. msgid "User actions" -msgstr "" +msgstr "Дзеяньні карыстальніка" #. TRANS: Text shown in user profile of not yet compeltely deleted users. msgid "User deletion in progress..." -msgstr "" +msgstr "Ідзе выдаленьне карыстальніка…" #. TRANS: Link title for link on user profile. msgid "Edit profile settings." -msgstr "" +msgstr "Рэдагаваць налады профілю." #. TRANS: Link text for link on user profile. msgctxt "BUTTON" msgid "Edit" -msgstr "" +msgstr "Рэдагаваць" #. TRANS: Link title for link on user profile. msgid "Send a direct message to this user." -msgstr "" +msgstr "Даслаць непасрэднае паведамленьне гэтаму карыстальніку" #. TRANS: Link text for link on user profile. msgctxt "BUTTON" msgid "Message" -msgstr "" +msgstr "Паведамленьне" #. TRANS: Label text on user profile to select a user role. msgid "Moderate" -msgstr "" +msgstr "Марэрацыя" #. TRANS: Label text on user profile to select a user role. msgid "User role" -msgstr "" +msgstr "Роля карыстальніка" #. TRANS: Role that can be set for a user profile. msgctxt "role" msgid "Administrator" -msgstr "" +msgstr "Адміністратар" #. TRANS: Role that can be set for a user profile. msgctxt "role" msgid "Moderator" -msgstr "" +msgstr "Мадэратар" #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" -msgstr "" +msgstr "%1$s — %2$s" #. TRANS: Page title for a page without a title set. msgid "Untitled page" -msgstr "" +msgstr "Старонка бяз назвы" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. msgctxt "TOOLTIP" msgid "Show more" -msgstr "" +msgstr "Паказаць болей" #. TRANS: Inline reply form submit button: submits a reply comment. msgctxt "BUTTON" msgid "Reply" -msgstr "" +msgstr "Адказаць" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "Напісаць адказ…" #. TRANS: Tab on the notice form. msgctxt "TAB" msgid "Status" -msgstr "" +msgstr "Статус" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. @@ -6742,11 +6745,13 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" +"**%%site.name%%** — сэрвіс мікраблёгінгу, прадстаўленая Вам [%%site.broughtby" +"%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "" +msgstr "**%%site.name%%** — сэрвіс мікраблёгінгу." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -6758,92 +6763,100 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Ён дзейнічае пры дапамозе праграмнага забесьпячэньня мікраблёгінгу " +"[StatusNet](http://status.net/), вэрсіі %s, даступнага на ўмовах ліцэнзіі " +"[GNU Affero General Public](http://www.fsf.org/licensing/licenses/agpl-3.0." +"html)." #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #, php-format msgid "Content and data of %1$s are private and confidential." -msgstr "" +msgstr "Зьмест і зьвесткі %1$s зьяўляюцца прыватнымі і канфідэнцыяльнымі." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" +"Аўтарскія правы на зьмест і зьвесткі належаць %1$s. Усе правы абароненыя." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +"Аўтарскія правы на зьмест і зьвесткі належаць распрацоўшчыкам. Усе правы " +"абароненыя." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Увесь зьмест і зьвесткі %1$s даступныя на ўмовах ліцэнзіі %2$s." #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. msgid "After" -msgstr "" +msgstr "Наступная" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. msgid "Before" -msgstr "" +msgstr "Папярэдняя" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. msgid "Expecting a root feed element but got a whole XML document." -msgstr "" +msgstr "Чакаўся карэнны элемэнт стужкі, а атрыманы ўвесь XML-дакумэнт." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #, php-format msgid "Unknown verb: \"%s\"." -msgstr "" +msgstr "Невядомая каманда: «%s»." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." -msgstr "" +msgstr "Прымусовая падпіска для ненадзейных удзельнікаў немагчымая." #. TRANS: Client exception thrown when trying to force a remote user to subscribe. msgid "Cannot force remote user to subscribe." -msgstr "" +msgstr "Прымусовая падпіска для выдаленых удзельнікаў немагчымая." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. msgid "Unknown profile." -msgstr "" +msgstr "Невядомы профіль." #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." -msgstr "" +msgstr "Гэтыя дзеяньні, здаецца, ня зьвязаная з нашым карыстальнікам." #. TRANS: Client exception thrown when trying to join a remote group that is not a group. msgid "Remote profile is not a group!" -msgstr "" +msgstr "Аддалены профіль не зьяўляецца групай!" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. msgid "User is already a member of this group." -msgstr "" +msgstr "Карыстальнік ўжо зьяўляецца ўдзельнікам гэтай групы." #. TRANS: Client exception thrown when trying to import a notice by another user. #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. #, php-format msgid "Already know about notice %1$s and it has a different author %2$s." -msgstr "" +msgstr "Запіс %1$s ужо вядомы і мае іншага аўтара %2$s." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. msgid "Not overwriting author info for non-trusted user." msgstr "" +"Немагчыма перазапісаць аўтарскую інфармацыю пра ненадзейнага карыстальніка." #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. #, php-format msgid "No content for notice %s." -msgstr "" +msgstr "Няма зьместу для запісу %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. #, 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. @@ -6854,15 +6867,15 @@ msgstr "" #, 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." -msgstr "" +msgstr "Пакуль яшчэ немагчыма апрацоўваць аддалены зьмест." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Пакуль яшчэ немагчыма апрацоўваць убудаваны XML-зьмест." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. msgid "Can't handle embedded Base64 content yet." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 0bbed13341..3327c13bb8 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:24+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" @@ -1967,25 +1967,23 @@ msgstr "Degemer" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Teuliadur" #. 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ù." +msgstr "Kregiñ ganti" #. 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ñ" +msgstr "Diwar-benn al lec'hienn-mañ" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1993,7 +1991,7 @@ msgid "FAQ" msgstr "FAG" msgid "Frequently asked questions" -msgstr "" +msgstr "Foar ar Goulennoù" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2005,13 +2003,12 @@ msgstr "Darempred" msgid "Contact info" msgstr "Darempred" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Balizennoù" msgid "Using tags" -msgstr "" +msgstr "Implijout balizennoù" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -2020,13 +2017,12 @@ msgctxt "MENU" msgid "Groups" msgstr "Strolladoù" -#, fuzzy msgid "Using groups" -msgstr "Strolladoù implijerien" +msgstr "Implijout strolladoù" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -2056,7 +2052,6 @@ msgstr "Ret eo lakaat un anv." #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. #. TRANS: Validation error shown when providing too long a name in the "New application" form. -#, fuzzy msgid "Name is too long (maximum 255 characters)." msgstr "Re hir eo an anv (255 arouezenn d'ar muiañ)." @@ -2085,7 +2080,6 @@ msgid "Organization is required." msgstr "Ezhomm 'zo eus an aozadur." #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#, fuzzy msgid "Organization is too long (maximum 255 characters)." msgstr "Re hir eo an aozadur (255 arouezenn d'ar muiañ)." @@ -2121,7 +2115,7 @@ msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." #. TRANS: Form instructions for group edit form. msgid "Use this form to edit the group." -msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." +msgstr "Implijit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. @@ -2137,20 +2131,19 @@ msgstr "Enrollet eo bet ho dibarzhioù." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Diverkañ an implijer-mañ" +msgstr "Diverkañ ar roll %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "N'eo ket reizh ar merk-se : %s." +msgstr "Kemmañ ar roll %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." msgstr "Lesanv pe ID ebet." @@ -2159,19 +2152,16 @@ msgid "Not a local user." msgstr "N'eo ket un implijer lec'hel." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." +msgstr "Rankout a reer bezañ krouer ar balizenn evit kemmañ anezhi." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." +msgstr "Implijit ar furmskrid-mañ evit kemmañ dibarzhioù ar roll." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Dilemel un ali" +msgstr "Diverkadenn bet nullet." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index f76cfeea88..252e03edcc 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,13 +16,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:27+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" @@ -6294,6 +6294,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6539,6 +6540,7 @@ msgstr "" "Ja heu creat %d o més etiquetes, que és el màxim nombre d'etiquetes permès. " "Proveu de reemplaçar o eliminar etiquetes que ja existeixen." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 8be3886b3a..24e219f86c 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -1,10 +1,12 @@ # Translation of StatusNet - Core to German (Deutsch) # Exported from translatewiki.net # +# Author: Alphakilo # Author: Apmon # Author: Bavatar # Author: Brion # Author: ChrisiPK +# Author: Exit91 # Author: Fujnky # Author: George Animal # Author: Giftpflanze @@ -20,6 +22,7 @@ # Author: Michi # Author: Od1n # Author: Purodha +# Author: Quedel # Author: The Evil IP address # Author: Tiin # Author: Umherirrender @@ -32,13 +35,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:31+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" @@ -5578,9 +5581,8 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Systembenachrichtigung (maximal 255 Zeichen; HTML erlaubt)" #. TRANS: Button title to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Systemnachricht speichern" +msgstr "Systemnachricht speichern." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5626,9 +5628,8 @@ msgid "SMS phone number" msgstr "SMS-Telefonnummer" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." -msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" +msgstr "Telefonnummer mit Vorwahl, keine Sonder- oder Leerzeichen." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5676,7 +5677,6 @@ msgid "That is the wrong confirmation number." msgstr "Die Bestätigungsnummer ist falsch." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." msgstr "Konnte die IM-Bestätigung nicht löschen." @@ -5713,9 +5713,8 @@ msgstr "" "s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Kein Code eingegeben" +msgstr "Kein Code eingegeben." #. TRANS: Title for admin panel to configure snapshots. msgctxt "TITLE" @@ -5794,9 +5793,9 @@ msgstr "Du kannst nur deine eigenen ausstehenden Abonnements annehmen." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "%s Gruppen-Mitgliedschaften" +msgstr "%s Mitglieder warten auf Bestätigung" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. @@ -5805,35 +5804,32 @@ msgid "%1$s subscribers awaiting approval, page %2$d" msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Liste der Benutzer in dieser Gruppe." +msgstr "Liste der Benutzer die auf Bestätigung warten." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonniert" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." +msgstr "Du musst angemeldet sein, um dich von einer Liste abzumelden." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "Kein ID-Argument." +msgstr "Keine ID angegeben." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." +msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "%1$s Abonnenten, Seite %2$d" +msgstr "%1$s haben die Liste %2$s durch %3$s abonniert" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5974,7 +5970,6 @@ msgstr "Nachrichten-Feed des Tags „%s“ (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." @@ -5988,7 +5983,7 @@ msgstr "Benutzerprofil" #, fuzzy, php-format msgctxt "ADDTOLIST" msgid "List %s" -msgstr "Limit" +msgstr "Liste" #. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" @@ -6025,16 +6020,14 @@ msgid "Tags" msgstr "Tags" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Passwort gespeichert." +msgstr "Listen gespeichert." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" -"Benutze dieses Formular, um Tags deinen Abonnenten oder Abonnements " -"hinzuzufügen." +"Mithilfe dieses Formulars können Ihre Abonnenten oder Abonnements zu Listen " +"hinzufügen." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6058,14 +6051,13 @@ msgstr "Abbestellt" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "%1$s Abonnenten, Seite %2$d" +msgstr "%1$s hat die Liste %2$s von %3$s abbestellt." #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "IM-Einstellungen" +msgstr "URL-Einstellungen" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6115,14 +6107,12 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (maximal 50 Zeichen)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "Ungültige Zahl für maximale URL-Länge." +msgstr "Ungültige maximale URL-Länge." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Ungültige Zahl für maximale Nachrichten-Länge." +msgstr "Ungültige maximale Nachrichten-Länge." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." @@ -6147,9 +6137,9 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer." +msgstr "Ungültiges Standard-Abonnement: \"%1$s\" ist kein Benutzer." #. TRANS: Fieldset legend in user administration panel. msgctxt "LEGEND" @@ -6239,12 +6229,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 "" -"Diese Seite wird mit %1$s Version %2$s betrieben. Copyright 2008–2010 " +"Diese Seite wird mit %1$s Version %2$s betrieben. Copyright 2008–2011 " "StatusNet, Inc. und Mitarbeiter" #. TRANS: Header for StatusNet contributors section on the version page. @@ -6343,6 +6333,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6432,9 +6423,9 @@ msgid "Could not create login token for %s" msgstr "Konnte keinen Login-Token für %s erstellen" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Kann neues Passwort nicht speichern." +msgstr "Kann Klasse %s nicht instanziieren." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6459,9 +6450,9 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "Kein Profil (%1$d) für eine Notiz gefunden (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" +msgstr "Datenbankfehler beim Einfügen des Hashtags: %s." #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -6581,9 +6572,8 @@ msgid "Could not create profile tag." msgstr "Konnte Profil-Tag nicht erstellen." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "Konnte Profil nicht speichern." +msgstr "Tag URI konnte nicht gespeichert werden." #. TRANS: Server exception saving new tag. #, fuzzy @@ -6599,6 +6589,7 @@ msgstr "" "Du hast bereits %d oder mehr Tags erstellt, was die maximal zulässige Anzahl " "von Tags ist. Benutze oder lösche einige bereits vorhandene Tags." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -7920,9 +7911,11 @@ msgid "Block" msgstr "Blockieren" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" msgid "Block this user so that they can no longer post messages to it." msgstr "" +"Blockiere diesen Benutzer, so dass er keine Nachrichten mehr schicken kann." #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8858,16 +8851,15 @@ msgstr "Beschreibe die Gruppe oder das Thema" #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Beschreibe die Gruppe oder das Thema in einem Zeichen" msgstr[1] "Beschreibe die Gruppe oder das Thema in %d Zeichen" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Diesen Benutzer löschen." +msgstr "Diese Liste löschen." #. TRANS: Header in list edit form. msgid "Add or remove people" @@ -8885,9 +8877,9 @@ msgstr "Liste" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s – %2$s" +msgstr "%1$s Liste von %2$s." #. TRANS: Menu item in list navigation panel. msgctxt "MENU" @@ -8902,9 +8894,9 @@ msgstr "Abonnenten" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "%s abboniert." +msgstr "Abonnenten der %1$s Liste von %2$s." #. TRANS: Menu item in list navigation panel. msgctxt "MENU" @@ -9607,8 +9599,8 @@ msgstr "Beliebte Nachrichten" #, php-format msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%%s und %d ähnliches. " +msgstr[1] "%%s und %d ähnliche." #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index a29b0ef782..8be3318dda 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -25,13 +25,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:38+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" @@ -6303,6 +6303,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6546,6 +6547,7 @@ msgstr "" "Ya ha creado %d o más etiquetas que el máximo permitido de etiquetas. " "Intente utilizar o eliminar algunas etiquetas existentes." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 079cba5eaa..565b2e6786 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:39+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" @@ -5341,7 +5341,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5349,7 +5349,7 @@ msgid "" msgstr "" "**%s**(e)k kontu bat du %%%%site.name%%%%n, [StatusNet](http://status.net/) " "software librean oinarritutako [mikroblogging](http://eu.wikipedia.org/wiki/" -"Mikroblogging) zerbitzuan. " +"Mikroblogging) zerbitzuan." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -6192,7 +6192,6 @@ 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 " @@ -6201,10 +6200,9 @@ msgid "" 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. " +"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 " @@ -6214,7 +6212,7 @@ msgstr "" "Programa hau erabilgarria izateko itxaropenarekin zabaldu da, baina INOLAKO " "BERMERIK GABE; iradokitako MERKATURATZE edo PROPOSAMEN JAKIN BATERAKO " "EGOKITASUNIK gabe. Ikusi GNU Affero General Public License xehetasun " -"gehiagotarako. " +"gehiagotarako." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6278,6 +6276,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6522,6 +6521,7 @@ msgstr "" "kopurura iritsi zara. Saiatu etiketa batzuk ezabatzen edo existitzen direnak " "erabiltzen." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 6568932b8e..ba3310bfe3 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -32,13 +32,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:46+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" @@ -1746,9 +1746,8 @@ msgstr "Cette adresse a déjà été confirmée." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Impossible de mettre à jour le dossier de l’utilisateur." +msgstr "Impossible de mettre à jour les préférences de messagerie instantanée." #. TRANS: Server error displayed when adding IM preferences fails. #, fuzzy @@ -2051,9 +2050,8 @@ msgctxt "MENU" msgid "Contact" msgstr "Contact" -#, fuzzy msgid "Contact info" -msgstr "Contact" +msgstr "Infos de contact" msgctxt "MENU" msgid "Tags" @@ -2077,7 +2075,7 @@ msgid "API" msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "API RESTful" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2819,9 +2817,9 @@ msgid "IM is not available." msgstr "La messagerie instantanée n’est pas disponible." #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. -#, fuzzy, php-format +#, php-format msgid "Current confirmed %s address." -msgstr "Adresse courriel actuellement confirmée." +msgstr "Adresse %s actuellement confirmée." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. @@ -3496,9 +3494,9 @@ msgstr "Statut de %1$s sur %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "Destinataire non trouvé." +msgstr "Pièce jointe %s non trouvée." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. @@ -3957,9 +3955,9 @@ msgid "Mode" msgstr "Mode" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Boîte d’envoi de %s" +msgstr "Listes pour %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4193,11 +4191,11 @@ msgstr "" #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" -msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" +msgstr[0] "Décrivez-vous avec vos centres d’intérêt en %d caractère." +msgstr[1] "Décrivez-vous avec vos centres d’intérêt en %d caractères." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. @@ -5229,9 +5227,8 @@ msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "La messagerie instantanée n’est pas disponible." +msgstr "Non disponible." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -6401,6 +6398,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -7022,10 +7020,9 @@ msgid "Home" msgstr "Accueil" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" -msgstr "Administrer" +msgstr "Admin" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -7859,17 +7856,15 @@ msgstr "Erreur de la base de données" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Public" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Limites" +msgstr "Listes" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8080,14 +8075,12 @@ msgid "Logo" msgstr "Logo" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Avis populaires" +msgstr "Groupes populaires" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Tous les groupes" +msgstr "Groupes actifs" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. @@ -8223,9 +8216,8 @@ msgid "Send" msgstr "Envoyer" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invitations" +msgstr "Envoyer les invitations." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8545,7 +8537,7 @@ msgstr "%1$s (@%2$s) a envoyé un avis à votre attention" #. 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" @@ -8565,8 +8557,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) vient de soumettre un avis à votre attention (un « @-reply ») " -"sur %2$s.\n" +"%1$s vient de soumettre un avis à votre attention (un « @-reply ») sur %2$s.\n" "\n" "L'avis est ici :\n" "\n" @@ -8582,32 +8573,27 @@ msgstr "" "\n" "La liste des @-replies qui vous sont destinées est ici :\n" "\n" -"%7$s\n" -"\n" -"Cordialement,\n" -"%2$s\n" -"\n" -"P.S. Vous pouvez désactiver ces notifications électroniques ici : %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. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s" -msgstr "%1$s a rejoint le groupe %2$s." +msgstr "%1$s a rejoint votre groupe %2$s sur %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. #. 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 a rejoint le groupe %2$s." +msgstr "%1$s a rejoint votre groupe %2$s sur %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s a rejoint le groupe %2$s." +msgstr "%1$s souhaite rejoindre votre groupe %2$s sur %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8895,9 +8881,8 @@ msgstr "dans le contexte" msgid "Repeated by" msgstr "Repris par" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. #, fuzzy @@ -9091,7 +9076,6 @@ msgid "Edit lists" msgstr "Cette marque est invalide : %s." #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "Balises" @@ -9351,7 +9335,6 @@ msgid "" msgstr "" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Personnes" @@ -9412,7 +9395,6 @@ msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Avatar" @@ -9697,10 +9679,10 @@ msgstr "Vous" #. 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 et %2$s" #. TRANS: List message for notice favoured by logged in user. #, fuzzy @@ -9811,9 +9793,8 @@ msgid "To:" msgstr "À" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -msgstr "Privé" +msgstr "Privé ?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. #, fuzzy, php-format diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 99a623b85e..32041910c4 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:48+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:39+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -1957,7 +1957,7 @@ msgid "FAQ" msgstr "Domandis plui frecuentis" msgid "Frequently asked questions" -msgstr "" +msgstr "Domandis fatis plui spes" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -1968,7 +1968,6 @@ msgstr "Contats" msgid "Contact info" msgstr "Informazions di contat" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Etichetis" @@ -4991,7 +4990,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5001,7 +5000,7 @@ 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 " "[StatusNet](http://status.net/). I siei membris a condividin messaçs curts " -"su la vite e i lôr interès. " +"su la vite e i lôr interès." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5269,7 +5268,7 @@ msgstr "" #. TRANS: %s is the invalid language code. #, php-format msgid "Unknown language \"%s\"." -msgstr "" +msgstr "Lenghe \"%s\" no cognossude." #. TRANS: Client error displayed trying to save site settings with a text limit below 0. msgid "Minimum text limit is 0 (unlimited)." @@ -5583,7 +5582,7 @@ msgstr "" #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" -msgstr "" +msgstr "Segnale URL" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. msgid "Snapshots will be sent to this URL." @@ -5717,7 +5716,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5727,8 +5726,7 @@ 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 " "membris di grups che ti interessin e i [utents plui famôs](%%action.featured%" -"%). Se tu sês un [utent di Twitter](%%action.twittersettings%%), tu puedis " -"in automatic sotscriviti ae int che tu seguivis di là." +"%)." #. 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. @@ -9218,20 +9216,20 @@ msgstr "Tu lu âs ripetût." #. 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 +#, 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." +msgstr[0] "Ripetût di %%s e %d altri." +msgstr[1] "Ripetût di %%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 +#, 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." +msgstr[0] "%%s lu à ripetût." +msgstr[1] "%%s lu àn ripetût." #. TRANS: Form legend. #, php-format diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index ba75fe8374..2a2a0e5e08 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:50+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:41+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" @@ -6301,6 +6301,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6543,6 +6544,7 @@ msgstr "" "Vostede xa creou %d ou máis etiquetas, que é o número máximo permitido. " "Intente usar ou borrar algunha das que xa existen." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 9b2195134f..0301216366 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:52+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:43+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" @@ -94,9 +94,8 @@ msgid "Closed" msgstr "סגורה" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "שמירת הגדרות גישה" +msgstr "שמירת הגדרות גישה." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -425,17 +424,15 @@ msgid "Unblock user failed." msgstr "הסרת החסימה ממשתמש נכשלה." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "אין מזהה שיחה" +msgstr "אין מזהה שיחה." #. 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 "אין שיחה עם מזהה %d" +msgstr "אין שיחה עם מזהה %d." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "שיחה" @@ -1926,18 +1923,16 @@ msgctxt "MENU" msgid "Help" msgstr "עזרה" -#, fuzzy msgid "Getting started" -msgstr "ההגדרות נשמרו." +msgstr "תחילת עבודה" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" msgstr "" -#, fuzzy msgid "About this site" -msgstr "לבטל חסימת משתמש" +msgstr "אודות האתר הזה" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -1970,9 +1965,8 @@ msgctxt "MENU" msgid "Groups" msgstr "" -#, fuzzy msgid "Using groups" -msgstr "קבוצות %s" +msgstr "שימוש בקבוצות" msgctxt "MENU" msgid "API" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index c506a0af77..61724e0eb8 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:53+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:46+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 (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" @@ -44,6 +44,8 @@ msgstr "Zmylk je wustupił." msgid "" "No configuration file found. Try running the installation program first." msgstr "" +"Žana konfiguraciska dataja njenamakana. Spytajće najprjedy instalaciski " +"program wuwjesć." #. TRANS: Error message displayed when trying to access a non-existing page. msgid "Unknown page" @@ -747,7 +749,7 @@ msgstr "Lisćina njenamakana." #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." -msgstr "" +msgstr "Njemóžeš lisćiny aktualizować, kotrež ći njesłušeja." #. TRANS: Client error displayed when an unknown error occurs updating a list. #. TRANS: Client error displayed when an unknown error occurs viewing list members. @@ -758,7 +760,7 @@ msgstr "Zmylk je wustupił." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." -msgstr "" +msgstr "Njemóžeš lisćiny zhašeć, kotrež ći njesłušeja." #. TRANS: Client error displayed when referring to a non-list member. msgid "The specified user is not a member of this list." @@ -786,7 +788,7 @@ msgstr "Lisćina dyrbi mjeno měć." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "Podaty wužiwar njeje abonent tuteje lisćiny." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. msgid "You are not subscribed to this list." @@ -802,7 +804,7 @@ msgstr "Njepłaćiwe přizjewjenske znamješka." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. msgid "No oauth_token parameter provided." -msgstr "" +msgstr "Žadyn parameter ouath_token njepodaty." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. msgid "Invalid request token." @@ -3375,7 +3377,7 @@ msgid "Only stream mode (no conversations) in timelines" msgstr "" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Konwersacisku stronu jako hierarchiski štom pokazać" msgid "Show nicknames (not full names) in timelines" msgstr "" @@ -3956,7 +3958,7 @@ msgstr "Pytanske wuslědki" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "Pytanski wuraz dyrbi znajmjeńša 3 znamješka dołhe być." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4456,7 +4458,7 @@ msgstr "Rozumju, zo wobsah a daty wot %1$s su priwatne a dowěrliwe." #. TRANS: %1$s is the license owner. #, php-format msgid "My text and files are copyright by %1$s." -msgstr "" +msgstr "%1$s ma awtorske prawo na mojim tekstom a mojimi datajemi." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. msgid "My text and files remain under my own copyright." @@ -5618,13 +5620,13 @@ msgstr "%1$s abonementow, strona %2$d" #. TRANS: Page notice for page with an overview of all subscriptions #. TRANS: of the logged in user's own profile. msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "To su ludźo, kotrychž zdźělenki čitaš." #. TRANS: Page notice for page with an overview of all subscriptions of a user other #. TRANS: than the logged in user. %s is the user nickname. #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "To su ludźo, kotrychž zdźělenki %s čita." #. TRANS: Subscription list text when the logged in user has no subscriptions. #. TRANS: This message contains Markdown URLs. The link description is between @@ -5792,7 +5794,7 @@ msgstr "[žadyn]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[internal]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" @@ -6815,6 +6817,7 @@ msgstr "Popisujomny" #. TRANS: Form guide. msgid "Default access for this application: read-only, or read-write" msgstr "" +"Standardny přistup za tutón program: jenož čitajomny abo čitajomny-pisajomny" #. TRANS: Submit button title. msgid "Cancel application changes." @@ -6966,7 +6969,7 @@ msgstr "Tutón přikaz hišće njeje implementowany." #. TRANS: Command exception text shown when a user tries to nudge themselves. msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Je bjez zmysła, so samoho storčić!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. @@ -7091,6 +7094,8 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" +"%s je zdaleny profil; móžeš jenož wužiwarjam na samsnym serwerje direktne " +"powěsće pósłać." #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -7321,7 +7326,7 @@ msgstr "Direktna powěsć wužiwarjej" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "poslednju zdźělenku wužiwarja wotwołać" #. TRANS: Help message for IM/SMS command "whois ". msgctxt "COMMANDHELP" @@ -7331,7 +7336,7 @@ msgstr "Profilowe informacije wo wužiwarju wotwołać" #. TRANS: Help message for IM/SMS command "lose ". msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "wužiwarja nuzować, tebje wjace njeslědować" #. TRANS: Help message for IM/SMS command "fav ". msgctxt "COMMANDHELP" @@ -7346,7 +7351,7 @@ msgstr "" #. TRANS: Help message for IM/SMS command "repeat #". msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "zdźělenku z datym ID wospjetować" #. TRANS: Help message for IM/SMS command "repeat ". msgctxt "COMMANDHELP" @@ -7356,7 +7361,7 @@ msgstr "Poslednju zdźělenku wužiwarja wospjetować" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "na zdźělenku z datym ID wotmołwić" #. TRANS: Help message for IM/SMS command "reply ". msgctxt "COMMANDHELP" @@ -7381,7 +7386,7 @@ msgstr "Skupinu wopušćić" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "" +msgstr "twoju statistiku wotwołać" #. TRANS: Help message for IM/SMS command "stop". #. TRANS: Help message for IM/SMS command "quit". @@ -7420,7 +7425,7 @@ msgstr "hišće njeimplementowany." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "wužiwarja na aktualizaciju dopomnić." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "No configuration file found." @@ -7562,7 +7567,7 @@ msgstr "Wšitcy čłonojo" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). msgid "Pending" -msgstr "" +msgstr "Njesčinjeny" #. TRANS: Header for mini list of users that are blocked in a group page (h2). msgid "Blocked" @@ -7630,6 +7635,8 @@ msgstr[3] "" msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"Nowi čłonojo dyrbja so wot administratora akceptować a wšě powěsće su " +"priwatne." #. TRANS: Indicator in group members list that this user is a group administrator. msgctxt "GROUPADMIN" @@ -7765,7 +7772,7 @@ msgstr "" #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "Transport njemóže prózdny być." #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" @@ -7884,6 +7891,8 @@ msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" +"%1$s by rady twoje zdźělenki na %2$s slědował. Móžeš jeho abonement na %3$s " +"přiwzać abo wotpokazać" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, @@ -9207,7 +9216,7 @@ msgstr "Pytać w" #. TRANS: Dropdown field title. msgid "Choose a field to search." -msgstr "" +msgstr "wubjerće polo za pytanje." #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 7f819ca766..70067246b9 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:48+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -4220,9 +4220,8 @@ msgid "Language" msgstr "Nyelv" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." -msgstr "Előnyben részesített nyelv" +msgstr "Előnyben részesített nyelv." #. TRANS: Dropdownlist label in form for profile settings. msgid "Timezone" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 19ebdef71a..efbb36f8a8 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:58+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" @@ -6267,6 +6267,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6507,6 +6508,7 @@ msgstr "" "Tu ha jam create %d o plus etiquettas, que es le numero maxime de etiquettas " "permittite. Tenta usar o deler alcun etiquettas existente." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 94100463c7..6ccbd662bb 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:05+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:58+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" @@ -6427,6 +6427,7 @@ msgstr "" "이미 태그를 %d개 이상 만들었습니다. 태그 최대 개수입니다. 기존의 태그를 사용" "하거나 태그를 지우고 새로 만들어 보십시오." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index a5ceff6148..71f4b2f79f 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" @@ -6289,6 +6289,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6537,6 +6538,7 @@ msgstr "" "Веќе имате создадено %d или повеќе ознаки, што претставува максималниот " "дозволен број на ознаки. Искористете или избришете некои постоечки ознаки." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index fe93fa6639..ac357b561f 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:14+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" @@ -6329,6 +6329,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6584,6 +6585,7 @@ msgstr "" "U hebt %d of meer labels aangemaakt. Meer labels aanmaken is niet mogelijk. " "Verwijder bestaande labels om nieuwe labels aan te kunnen maken." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 47157e2fd5..884e877df2 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:09+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -22,8 +22,8 @@ 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 (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" @@ -6406,6 +6406,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 52b1ba906d..bd1d0b6173 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,14 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:20+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:13+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" @@ -6344,6 +6344,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 09c59c2339..cc296edc43 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,13 +19,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:22+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" @@ -6316,6 +6316,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6564,6 +6565,7 @@ msgstr "" "тегов. Попробуйте воспользоваться уже существующим тегом или удалите " "некоторые старые теги." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 4df8a037c1..2ab0430783 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:24+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" @@ -6262,6 +6262,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6504,6 +6505,7 @@ msgstr "" "Du har redan skapat %d eller fler taggar som är det maximalt tillåtna " "antalet taggar. Försök använda eller stryka några befintliga taggar." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index 29fd0dcacb..7b0f7126dd 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:28+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -6473,6 +6473,7 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6728,6 +6729,7 @@ msgstr "" "pinahihintulutang bilang ng mga tatak. Subukang gamitin o burahin ang ilan " "sa umiiral na mga tatak.}}" +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 46d5a2ba93..38b2a19950 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:30+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" @@ -6336,6 +6336,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6581,6 +6582,7 @@ msgstr "" "теґів. Спробуйте скористатися вже існуючим теґом або видаліть деякі старі " "теґи." +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 5ec48eeeeb..326262f15a 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -5,6 +5,7 @@ # Author: Chenxiaoqino # Author: Happy # Author: Hydra +# Author: Hzy980512 # Author: March # Author: Shizhao # Author: Sweeite012f @@ -18,14 +19,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:32+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09:27+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 (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" @@ -102,9 +103,8 @@ msgid "Closed" msgstr "封闭(不允许新用户注册)" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "保存访问设置" +msgstr "保存访问设置。" #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -308,7 +308,6 @@ 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 "发送邀请。" @@ -429,14 +428,13 @@ msgid "Unblock user failed." msgstr "取消屏蔽用户失败。" #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "对话" +msgstr "对话。" #. 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 "对话" +msgstr "没有ID为%d的对话。" #. TRANS: Title for conversion timeline. #, fuzzy @@ -1961,7 +1959,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "常见问题" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -1994,7 +1992,7 @@ msgstr "用户小组" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" msgstr "" @@ -3701,9 +3699,8 @@ msgid "Server to direct SSL requests to." msgstr "直接SSL请求的服务器" #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "保存网站设置。" +msgstr "保存路径设置。" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -6106,6 +6103,7 @@ msgid "%1$d byte" msgid_plural "%1$d bytes" msgstr[0] "" +# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6333,6 +6331,7 @@ msgstr "" "你已经创建了 %d 条或更多的标签,达到了标签数量的上限。试下删掉一些已经创建的" "标签。" +# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -7377,7 +7376,7 @@ msgstr "将带有所给 id 的消息标记为“收藏”" #. TRANS: Help message for IM/SMS command "repeat #". msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "用已给id重复通知" #. TRANS: Help message for IM/SMS command "repeat ". msgctxt "COMMANDHELP" @@ -7387,7 +7386,7 @@ msgstr "转发用户的最后一条消息" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "用已给出的id回复通知" #. TRANS: Help message for IM/SMS command "reply ". msgctxt "COMMANDHELP" @@ -7706,7 +7705,7 @@ msgstr "" #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "返回顶部" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8270,10 +8269,9 @@ msgid "Make Admin" msgstr "设置管理员" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "将这个用户设为管理员" +msgstr "将此用户设为管理员" #. 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." @@ -9294,7 +9292,7 @@ msgstr "" #. TRANS: Dropdown field label. msgctxt "LABEL" msgid "Search in" -msgstr "中搜索" +msgstr "搜索于" #. TRANS: Dropdown field title. msgid "Choose a field to search." @@ -9304,13 +9302,13 @@ msgstr "选择要搜索的字段。" #. TRANS: %1$s is a nickname, $2$s is a list. #, php-format msgid "Remove %1$s from list %2$s" -msgstr "删除 %1$s 从 %2$s 列表中" +msgstr "%2$s列表中删除%1$s" #. TRANS: Legend on form to add a profile to a list. #. TRANS: %1$s is a nickname, %2$s is a list. #, php-format msgid "Add %1$s to list %2$s" -msgstr "添加 %1$s 到 %2$s 列表中" +msgstr "添加%1$s到列表%2$s中" #. TRANS: Title for top posters section. msgid "Top posters" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 6644460e8d..2a5120f281 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -1,4 +1,4 @@ -# Translation of StatusNet - APC to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - APC to Norwegian Bokmål (‪Norsk (bokmål)‬) # Exported from translatewiki.net # # Author: Nghtwlkr @@ -9,17 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:06:13+0000\n" +"Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-Language-Code: no\n" +"X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po index c00a8249cd..1f32bcbbe4 100644 --- a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:07: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -46,7 +46,7 @@ msgstr "" #. TRANS: Blog application title. msgctxt "TITLE" msgid "Blog" -msgstr "" +msgstr "Blog" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." diff --git a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po index 525719ed76..ed2906cd8b 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:34+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 index f4e0743536..adbb0a1f9a 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:34+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index a9eca5bcdd..2f80e83ade 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:34+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/es/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po index 74490ef0f4..ddedecc6d6 100644 --- a/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:34+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po index 4a0b39fedc..ba7e75a452 100644 --- a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\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 92bdbe790e..515f1921f8 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/lt/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po index 21fd0e7390..af84f197a6 100644 --- a/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:04+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" "Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lt\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 ea756b2b00..cfbddf7c4c 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 105b6374a3..f170dcfd74 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 5a57f9c76d..328737fee6 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 fc6fcf5c65..e556160bac 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:35+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:08: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-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/eu/LC_MESSAGES/Echo.po b/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..fe12fe9d07 --- /dev/null +++ b/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Echo 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 - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09: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:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\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 "" +"Erabili Echo oharren orriei iruzkinak " +"gehitzeko." diff --git a/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..34da35e4cc --- /dev/null +++ b/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - EmailReminder to French (Français) +# Exported from translatewiki.net +# +# Author: Od1n +# -- +# 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: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:09: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-19 11:23:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: fr\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 "" + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "" + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Rappel - veuillez confirmer votre inscription !" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Deuxième rappel - veuillez confirmer votre inscription !" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Dernier rappel - veuillez confirmer votre inscription !" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index b3425534e7..5d0f0c200b 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:53+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index a89c75e916..9aa2195e13 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:53+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index 15d6fa897c..015edd937a 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index 32ac761ccc..f1eb6b6439 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po index 166c920794..3d8b7822df 100644 --- a/plugins/Event/locale/eu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index 6092b601e9..f6c68ecaf5 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:21+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -41,11 +41,11 @@ msgstr "(1 heure)" #, php-format msgid "(%.1f hours)" -msgstr "" +msgstr "(%.1f heures)" #, php-format msgid "(%d hours)" -msgstr "" +msgstr "(%d heures)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po index 46b07633e1..9afa86e1ae 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:54+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 147b9376cd..52970174cd 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:21+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 691cf50c02..1fc0006c92 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index c9af816c54..bc86e9edbd 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 0336c093fc..c123b134b5 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10: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-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index a2385fee69..50a324fc85 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index c8ca7b111d..3d5c67edbf 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 7b57bc7761..2a08a6ac92 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:46:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po index af042a2ab0..4f63e29791 100644 --- a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:11:00+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 (r106599); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" @@ -24,7 +24,7 @@ msgstr "" #. 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 "Web zerbitzua denboraz kanpo geratu delako salto egiten." #. TRANS: Exception thrown when a geo names service does not return an expected response. #. TRANS: %s is an HTTP error code. diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 621f5f3efa..1ec8901598 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 97d4e51cd6..3e827a202e 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 3e6db87a7f..f734f45ebb 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/es/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po index 5e02de8763..090f1b1901 100644 --- a/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:20+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\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 index 89460d2229..bc2726d49f 100644 --- a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 2a26d7bde4..3f56c2c285 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 4d6468f5e7..cf3588e6b2 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:55+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index dc4bea8224..0299448cf9 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 6c1b61ddd9..5655b382b5 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 1376b47cd9..22761f8fe6 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 60153514a3..958afff8c6 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:21+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nb\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 2cde177fe8..2b017ff938 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 71df445dfd..9f5fd8d00f 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 9276303b13..c6eb022531 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 f2b18fc46b..6fab88ec65 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 e2a6c2dfe9..d1d89597e7 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 403337f545..e73c32692c 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:56+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-12-03 13:48:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po index 5e2afc6e22..7e5e8fffb9 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:59+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 4ac8da3395..36c67c136e 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:59+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 adfe4ed014..4b704af17e 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:24+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/gl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po index b11c9b17ae..1f41f93606 100644 --- a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\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 c037f354fd..4517b23bdb 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 7afa56a04d..3608907c77 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 ad66815939..76ffe94bad 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 88fd9a31d7..94e3ca02f2 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 0cf1ca84aa..6bd36768ed 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:00+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index 5796e9acf7..c8292581fa 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Hashar +# Author: Od1n # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-27 12:36+0000\n" -"PO-Revision-Date: 2011-04-27 12:37:46+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:13: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-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87008); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -35,11 +37,11 @@ msgstr "MSN" #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a user." -msgstr "" +msgstr "Il faut spécifier un utilisateur." #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a password." -msgstr "" +msgstr "Il faut spécifier un mot de passe." #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a nickname." diff --git a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po index 567b13ecd9..455c04cab4 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 f22601d73b..f322a68180 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 index a15afa1564..2b46dbb627 100644 --- a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OMB to German (Deutsch) # Exported from translatewiki.net # +# Author: Alphakilo # Author: Marcel083 # Author: Tiin # -- @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-omb\n" @@ -41,7 +42,7 @@ 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 "" +msgstr "Sie können mit dieser Aktion kein OMB0.1 Profil abonnieren." #. 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." @@ -57,4 +58,4 @@ msgstr "" #. TRANS: Plugin description. msgid "A sample plugin to show basics of development for new hackers." -msgstr "" +msgstr "Ein Beispiel-Plugin Grundlagen der Entwicklung neuen Hacker zu zeigen." diff --git a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po index e6281515cc..5d1b5322b3 100644 --- a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OMB to Basque (Euskara) # Exported from translatewiki.net # +# Author: An13sa # Author: Artsuaga # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-omb\n" @@ -31,7 +32,7 @@ msgstr "Harpidetu" #. TRANS: Button text on Authorise Subscription page. msgctxt "BUTTON" msgid "Accept" -msgstr "Onartzu" +msgstr "Onartu" #. TRANS: Button text on Authorise Subscription page. msgctxt "BUTTON" diff --git a/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po index fabaa98731..03ad2c92a3 100644 --- a/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:32+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po index 50856d3bee..f928b9077f 100644 --- a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index 77ea8fae4e..a5f4677534 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 2b2dc55d9e..90af0638ca 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 b05f2beb4d..3f198d015f 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:08+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index ba3bdc11a1..0a9ac13a82 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OStatus to German (Deutsch) # Exported from translatewiki.net # +# Author: Alphakilo # Author: Fujnky # Author: George Animal # Author: Giftpflanze @@ -13,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:02+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:14: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -102,7 +103,6 @@ msgid "Could not set up remote group membership." msgstr "Konnte Remotegruppenmitgliedschaft nicht einrichten." #. TRANS: Title for joining a remote groep. -#, fuzzy msgctxt "TITLE" msgid "Join" msgstr "Beitreten" @@ -118,7 +118,6 @@ msgid "Failed joining remote group." msgstr "Fehler beim Beitreten der Remotegruppe." #. TRANS: Title for leaving a remote group. -#, fuzzy msgctxt "TITLE" msgid "Leave" msgstr "Verlassen" @@ -146,20 +145,18 @@ msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s folgt %2$s nicht mehr." #. TRANS: Exception thrown when subscription to remote list fails. -#, fuzzy msgid "Failed subscribing to remote list." msgstr "Fehler beim Beitreten der Remotegruppe." #. TRANS: Title for unfollowing a remote list. -#, fuzzy msgid "Unfollow list" -msgstr "Nicht mehr beachten" +msgstr "Liste nicht länger verfolgen" #. 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. -#, fuzzy, php-format +#, php-format msgid "%1$s stopped following the list %2$s by %3$s." -msgstr "%1$s folgt %2$s nicht mehr." +msgstr "%1$s folgt %2$s von %3$s nicht länger." #. TRANS: Title for listing a remote profile. msgctxt "TITLE" @@ -168,18 +165,18 @@ msgstr "" #. 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. -#, fuzzy, php-format +#, php-format msgid "%1$s listed %2$s in the list %3$s." -msgstr "%1$s folgt %2$s nicht mehr." +msgstr "%1$s folgt %2$s der Liste %3$s nicht länger." #. TRANS: Exception thrown when subscribing to a remote list fails. -#, fuzzy, php-format +#, php-format msgid "" "Could not complete subscription to remote profile's feed. List %s could not " "be saved." msgstr "" -"Konnte Abonnement für den Feed des entfernt liegenden Profils nicht " -"vollenden. Tag %s konnte nicht gespeichert werden." +"Konnte Abonnement für den Feed des Remoteprofils nicht vollenden. Tag %s " +"konnte nicht gespeichert werden." #. TRANS: Title for unlisting a remote profile. #, fuzzy diff --git a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po index 6bcb012d2b..c4a6c250e7 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:12+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:41+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 (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index b571bb8cbb..0431de4a3c 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 318ecb1521..19ca93279f 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 2b8b06cece..4c14ca13a9 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po index 058cdd9ac1..12bdc0cf0d 100644 --- a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:13+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:41+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 (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index caf84e5f05..c71502da76 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:19+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -205,10 +205,10 @@ msgid "No profile with ID %s" msgstr "" #. TRANS: %s is the number of answer revisions. -#, fuzzy, php-format +#, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "%s révisions" +msgstr[0] "%s révision" msgstr[1] "%s révisions" #. TRANS: Text for a question that was answered. @@ -228,10 +228,10 @@ msgstr "répondu « %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 réponses" +msgstr[0] "%s réponse" msgstr[1] "%s réponses" #. TRANS: Notification that a question cannot be answered anymore because it is closed. diff --git a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po index 73f6240f50..b26b651647 100644 --- a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:14+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\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 06bacca1c4..7fe7f0c774 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:14+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 50ab643444..8643c82e71 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:14+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 b906479b8c..ea540515d2 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:14+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 2c39f464d7..6a21e07385 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:15+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 36b547e2f4..c5db31ec23 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:15+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:42+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 (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 1fd1ab4592..1e8c4aa2d1 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:15+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 7e78068863..1a6cc458a6 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:15+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 31b929e74d..db9826faf6 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 063b7d2085..a4a3e9d0c1 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 5688de7786..3b9b61372b 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 b36f05bc05..be423f4253 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index d1878a5009..49ac7848f3 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 bda9481279..f37cd947d3 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:22+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/gl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po index 0584e5acdd..a6d70192f5 100644 --- a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:16+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\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 648940a4f6..02684b1db0 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 d29dd967e1..624a309ca6 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 87d7e4c4ba..1435e4be1e 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 f6d294784a..00a1c88637 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 fc55b9a724..59ee87d45d 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 66e4d8b973..945a3bfa5a 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 54f588a4bd..49a86ea5ae 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 f52a3713d2..8465b25537 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 9b74f0afb6..9b4237ba37 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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 d3c4e55a78..74247d80c4 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:17+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:15: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-12-03 13:48:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\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/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 4b65846c6a..3bac472681 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -1,6 +1,7 @@ # Translation of StatusNet - TwitterBridge to German (Deutsch) # Exported from translatewiki.net # +# Author: Alphakilo # Author: George Animal # Author: Giftpflanze # Author: Habi @@ -14,14 +15,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:18: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -359,7 +360,7 @@ 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!" -msgstr "" +msgstr "Eingabe erfolgte durch unerwarteten Socket" #. TRANS: Exception thrown when an invalid state is encountered in handleLine. #. TRANS: %s is the invalid state. diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 0728b514fe..1ed97398b9 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-01-20 18:05+0000\n" +"PO-Revision-Date: 2012-01-20 18:18: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" +"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" +"13)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -69,7 +69,6 @@ msgstr "" "utiliser votre mot de passe %1$s pour vous connecter." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" msgstr "Déconnecter" @@ -101,7 +100,6 @@ msgid "Save" msgstr "Enregistrer" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Ajouter" @@ -231,7 +229,7 @@ msgstr "Mot de passe" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Licence" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. @@ -395,7 +393,7 @@ msgstr "" #. 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 "Mauvais code de réponse HTTP %1$s : %2$s." #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. From b475c871a4a6b50e270a128fd16146893cbf68a7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 21 Jan 2012 21:12:20 -0500 Subject: [PATCH 118/134] add displayName and targetUrl to activity JSON --- plugins/Bookmark/BookmarkPlugin.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/plugins/Bookmark/BookmarkPlugin.php b/plugins/Bookmark/BookmarkPlugin.php index ff68917bcc..319366c19b 100644 --- a/plugins/Bookmark/BookmarkPlugin.php +++ b/plugins/Bookmark/BookmarkPlugin.php @@ -572,4 +572,20 @@ class BookmarkPlugin extends MicroAppPlugin $notice->update($original); } } + + public function activityObjectOutputJson(ActivityObject $obj, array &$out) + { + assert($obj->type == ActivityObject::BOOKMARK); + + $bm = Bookmark::staticGet('uri', $obj->id); + + if (empty($bm)) { + throw new ServerException("Unknown bookmark: " . $obj->id); + } + + $out['displayName'] = $bm->title; + $out['targetUrl'] = $bm->url; + + return true; + } } From 23bafaba26fb30b1277863a1df00057bdef74ce2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 26 Jan 2012 11:02:29 -0500 Subject: [PATCH 119/134] add canonical rel --- actions/public.php | 5 +++++ actions/showgroup.php | 8 ++++++++ actions/showstream.php | 5 +++++ 3 files changed, 18 insertions(+) diff --git a/actions/public.php b/actions/public.php index 7bcdd3fae2..8c72446636 100644 --- a/actions/public.php +++ b/actions/public.php @@ -159,6 +159,11 @@ class PublicAction extends Action $this->element('link', array('rel' => 'EditURI', 'type' => 'application/rsd+xml', 'href' => $rsd)); + + if ($this->page != 1) { + $this->element('link', array('rel' => 'canonical', + 'href' => common_local_url('public'))); + } } /** diff --git a/actions/showgroup.php b/actions/showgroup.php index eba3191f6f..10601e58b4 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -233,4 +233,12 @@ class ShowgroupAction extends GroupAction $this->raw(common_markup_to_html($m)); $this->elementEnd('div'); } + + function extraHead() + { + if ($this->page != 1) { + $this->element('link', array('rel' => 'canonical', + 'href' => $this->group->homeUrl())); + } + } } diff --git a/actions/showstream.php b/actions/showstream.php index a3b1794313..9e89b1b48c 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -212,6 +212,11 @@ class ShowstreamAction extends ProfileAction $this->element('link', array('rel' => 'EditURI', 'type' => 'application/rsd+xml', 'href' => $rsd)); + + if ($this->page != 1) { + $this->element('link', array('rel' => 'canonical', + 'href' => $this->profile->profileurl)); + } } function showEmptyListMessage() From d625364354171159ee82e51e77c82c2b681c9acc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 27 Jan 2012 15:01:51 -0500 Subject: [PATCH 120/134] LOG_ERROR -> LOG_ERR for SubMirror --- plugins/SubMirror/classes/SubMirror.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SubMirror/classes/SubMirror.php b/plugins/SubMirror/classes/SubMirror.php index 5a9d0be5d9..b36677e58a 100644 --- a/plugins/SubMirror/classes/SubMirror.php +++ b/plugins/SubMirror/classes/SubMirror.php @@ -157,7 +157,7 @@ class SubMirror extends Memcached_DataObject { $profile = Profile::staticGet('id', $this->subscriber); if (!$profile) { - common_log(LOG_ERROR, "SubMirror plugin skipping auto-repeat of notice $notice->id for missing user $profile->id"); + common_log(LOG_ERR, "SubMirror plugin skipping auto-repeat of notice $notice->id for missing user $profile->id"); return false; } From d28f726c5ccef559ff4bbe173786b232be52d5ba Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 27 Jan 2012 15:27:46 -0500 Subject: [PATCH 121/134] weird error with SubMirror --- plugins/SubMirror/SubMirrorPlugin.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/SubMirror/SubMirrorPlugin.php b/plugins/SubMirror/SubMirrorPlugin.php index 95fccabe9d..427153ab22 100644 --- a/plugins/SubMirror/SubMirrorPlugin.php +++ b/plugins/SubMirror/SubMirrorPlugin.php @@ -157,6 +157,10 @@ class SubMirrorPlugin extends Plugin */ function onOstatus_profileSubscriberCount($oprofile, &$count) { + if (empty($oprofile) || !($oprofile instanceof Ostatus_profile)) { + return true; + } + if ($oprofile->profile_id) { $mirror = new SubMirror(); $mirror->subscribed = $oprofile->profile_id; @@ -166,6 +170,7 @@ class SubMirrorPlugin extends Plugin } } } + return true; } From e4085087f13852412f0b97b5c3d2178796c0de7a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 27 Jan 2012 15:32:13 -0500 Subject: [PATCH 122/134] non-existent poco --- plugins/Blacklist/BlacklistPlugin.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index babf703131..33d0bf430b 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -505,14 +505,16 @@ class BlacklistPlugin extends Plugin } } - $nickname = strtolower($actor->poco->preferredUsername); + if (!empty($actor->poco)) { + $nickname = strtolower($actor->poco->preferredUsername); - if (!empty($nickname)) { - if (!$this->_checkNickname($nickname)) { - // TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. - $msg = sprintf(_m("Notices from nickname \"%s\" disallowed."), - $nickname); - throw new ClientException($msg); + if (!empty($nickname)) { + if (!$this->_checkNickname($nickname)) { + // TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. + $msg = sprintf(_m("Notices from nickname \"%s\" disallowed."), + $nickname); + throw new ClientException($msg); + } } } From 5b6ecef24b85304661c6b33ae4b15bf8805ad6a2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 27 Jan 2012 16:12:54 -0500 Subject: [PATCH 123/134] script to gc all feeds --- plugins/OStatus/scripts/gcfeeds.php | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 plugins/OStatus/scripts/gcfeeds.php diff --git a/plugins/OStatus/scripts/gcfeeds.php b/plugins/OStatus/scripts/gcfeeds.php new file mode 100644 index 0000000000..59656aff9b --- /dev/null +++ b/plugins/OStatus/scripts/gcfeeds.php @@ -0,0 +1,41 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); + +$helptext = <<fetch()) { + print $feedsub->uri . "(" . $feedsub->sub_state . ")"; + $result = $feedsub->garbageCollect(); + if ($result) { + print " INACTIVE\n"; + } else { + print " ACTIVE\n"; + } +} From 4a95a0bb6073bf9db71bd049b3e96fd860671be1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 7 Feb 2012 16:26:51 +0100 Subject: [PATCH 124/134] scripts to join and leave groups --- scripts/joingroup.php | 58 ++++++++++++++++++++++++++++++++++++++++++ scripts/leavegroup.php | 58 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 scripts/joingroup.php create mode 100644 scripts/leavegroup.php diff --git a/scripts/joingroup.php b/scripts/joingroup.php new file mode 100644 index 0000000000..658244db9d --- /dev/null +++ b/scripts/joingroup.php @@ -0,0 +1,58 @@ +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:g:G:'; +$longoptions = array('id=', 'nickname=', 'group=', 'group-id='); + +$helptext = <<group_id); + $user->joinGroup($group); + print "OK\n"; +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} diff --git a/scripts/leavegroup.php b/scripts/leavegroup.php new file mode 100644 index 0000000000..653c3b5aad --- /dev/null +++ b/scripts/leavegroup.php @@ -0,0 +1,58 @@ +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:g:G:'; +$longoptions = array('id=', 'nickname=', 'group=', 'group-id='); + +$helptext = <<group_id); + $user->leaveGroup($group); + print "OK\n"; +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} From 183ffce78f9c538cb8398d69eaca41214db86ecf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Feb 2012 10:58:56 -0500 Subject: [PATCH 125/134] check reply_to flag before sending replies to Facebook --- plugins/FacebookBridge/lib/facebookclient.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/FacebookBridge/lib/facebookclient.php b/plugins/FacebookBridge/lib/facebookclient.php index 00b313b6a4..d0eb18d079 100644 --- a/plugins/FacebookBridge/lib/facebookclient.php +++ b/plugins/FacebookBridge/lib/facebookclient.php @@ -176,7 +176,8 @@ class Facebookclient // If it's not a reply, or if the user WANTS to send @-replies, // then, yeah, it can go to Facebook. - if (!preg_match('/@[a-zA-Z0-9_]{1,15}\b/u', $this->notice->content) || + + if ((empty($notice->reply_to) && !preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content)) || ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY)) { return true; } From aa14a14f86d613dd509bbdceb57991c4d854130a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Feb 2012 11:29:49 -0500 Subject: [PATCH 126/134] using wrong rules for facebook replies --- plugins/FacebookBridge/lib/facebookclient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FacebookBridge/lib/facebookclient.php b/plugins/FacebookBridge/lib/facebookclient.php index d0eb18d079..26e21cbd6e 100644 --- a/plugins/FacebookBridge/lib/facebookclient.php +++ b/plugins/FacebookBridge/lib/facebookclient.php @@ -177,7 +177,7 @@ class Facebookclient // If it's not a reply, or if the user WANTS to send @-replies, // then, yeah, it can go to Facebook. - if ((empty($notice->reply_to) && !preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content)) || + if (empty($this->notice->reply_to) || ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY)) { return true; } From be71f1e4e71557d142236e2d50de09000f2f1367 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 27 Feb 2012 15:56:35 +0100 Subject: [PATCH 127/134] Fix grammar. --- plugins/Blacklist/BlacklistPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index babf703131..58492d0dbb 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -510,7 +510,7 @@ class BlacklistPlugin extends Plugin if (!empty($nickname)) { if (!$this->_checkNickname($nickname)) { // TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. - $msg = sprintf(_m("Notices from nickname \"%s\" disallowed."), + $msg = sprintf(_m("Notices from nickname \"%s\" are disallowed."), $nickname); throw new ClientException($msg); } From f34a196e83257e41c79190b1be6cad264a9b7e3e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 1 Mar 2012 17:22:45 +0100 Subject: [PATCH 128/134] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 11 +- locale/be-tarask/LC_MESSAGES/statusnet.po | 291 ++-- locale/bg/LC_MESSAGES/statusnet.po | 11 +- locale/br/LC_MESSAGES/statusnet.po | 43 +- locale/ca/LC_MESSAGES/statusnet.po | 31 +- locale/cs/LC_MESSAGES/statusnet.po | 11 +- locale/de/LC_MESSAGES/statusnet.po | 35 +- locale/en_GB/LC_MESSAGES/statusnet.po | 11 +- locale/eo/LC_MESSAGES/statusnet.po | 11 +- locale/es/LC_MESSAGES/statusnet.po | 35 +- locale/eu/LC_MESSAGES/statusnet.po | 31 +- locale/fa/LC_MESSAGES/statusnet.po | 12 +- locale/fi/LC_MESSAGES/statusnet.po | 11 +- locale/fr/LC_MESSAGES/statusnet.po | 525 ++++--- locale/fur/LC_MESSAGES/statusnet.po | 11 +- locale/gl/LC_MESSAGES/statusnet.po | 27 +- locale/he/LC_MESSAGES/statusnet.po | 21 +- locale/hsb/LC_MESSAGES/statusnet.po | 41 +- locale/hu/LC_MESSAGES/statusnet.po | 11 +- locale/ia/LC_MESSAGES/statusnet.po | 31 +- locale/it/LC_MESSAGES/statusnet.po | 226 ++- locale/ja/LC_MESSAGES/statusnet.po | 11 +- locale/ka/LC_MESSAGES/statusnet.po | 11 +- locale/ko/LC_MESSAGES/statusnet.po | 12 +- locale/mk/LC_MESSAGES/statusnet.po | 25 +- locale/ml/LC_MESSAGES/statusnet.po | 11 +- locale/nb/LC_MESSAGES/statusnet.po | 11 +- locale/nl/LC_MESSAGES/statusnet.po | 33 +- locale/pl/LC_MESSAGES/statusnet.po | 1241 +++++++---------- locale/pt/LC_MESSAGES/statusnet.po | 11 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 32 +- locale/ru/LC_MESSAGES/statusnet.po | 15 +- locale/sv/LC_MESSAGES/statusnet.po | 13 +- locale/te/LC_MESSAGES/statusnet.po | 11 +- locale/tl/LC_MESSAGES/statusnet.po | 13 +- locale/uk/LC_MESSAGES/statusnet.po | 16 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 13 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 9 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 9 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 9 +- .../locale/af/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 9 +- .../locale/de/LC_MESSAGES/AccountManager.po | 9 +- .../locale/es/LC_MESSAGES/AccountManager.po | 9 +- .../locale/eu/LC_MESSAGES/AccountManager.po | 9 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 9 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 9 +- .../locale/gl/LC_MESSAGES/AccountManager.po | 9 +- .../locale/he/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ja/LC_MESSAGES/AccountManager.po | 9 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 9 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 9 +- .../locale/pl/LC_MESSAGES/AccountManager.po | 25 + .../locale/pt/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 9 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 9 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 9 +- .../locale/ar/LC_MESSAGES/Activity.po | 11 +- .../locale/ca/LC_MESSAGES/Activity.po | 11 +- .../locale/de/LC_MESSAGES/Activity.po | 11 +- .../locale/es/LC_MESSAGES/Activity.po | 11 +- .../locale/eu/LC_MESSAGES/Activity.po | 11 +- .../locale/fr/LC_MESSAGES/Activity.po | 114 ++ .../locale/gl/LC_MESSAGES/Activity.po | 11 +- .../locale/ia/LC_MESSAGES/Activity.po | 11 +- .../locale/lt/LC_MESSAGES/Activity.po | 11 +- .../locale/mk/LC_MESSAGES/Activity.po | 11 +- .../locale/nl/LC_MESSAGES/Activity.po | 11 +- .../locale/pl/LC_MESSAGES/Activity.po | 117 ++ .../locale/ru/LC_MESSAGES/Activity.po | 11 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 16 +- .../Adsense/locale/eu/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/lt/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 9 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 9 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/es/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/eu/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/gl/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/pl/LC_MESSAGES/Aim.po | 43 + plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 9 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 9 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 9 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 9 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/es/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/gl/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/pl/LC_MESSAGES/ApiLogger.po | 24 + .../locale/pt/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 9 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 9 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/gl/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/pl/LC_MESSAGES/AutoSandbox.po | 45 + .../locale/ru/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 9 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/eu/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/gl/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/lt/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/pl/LC_MESSAGES/Autocomplete.po | 11 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 9 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 9 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/es/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/gl/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/pl/LC_MESSAGES/Awesomeness.po | 27 + .../locale/pt/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 9 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/es/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 9 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 9 +- plugins/Blacklist/locale/Blacklist.pot | 4 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 11 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 13 +- .../locale/de/LC_MESSAGES/Blacklist.po | 13 +- .../locale/es/LC_MESSAGES/Blacklist.po | 13 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 13 +- .../locale/gl/LC_MESSAGES/Blacklist.po | 13 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 13 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 13 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 13 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 11 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 15 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 13 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 13 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 11 +- .../BlankAd/locale/ast/LC_MESSAGES/BlankAd.po | 9 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/gl/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 9 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 9 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 9 +- plugins/Blog/locale/ar/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/br/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/es/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/eu/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/fr/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/gl/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/lt/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 11 +- plugins/Blog/locale/tr/LC_MESSAGES/Blog.po | 11 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/gl/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/lt/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 11 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 9 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 9 +- .../locale/de/LC_MESSAGES/Bookmark.po | 9 +- .../locale/es/LC_MESSAGES/Bookmark.po | 9 +- .../locale/eu/LC_MESSAGES/Bookmark.po | 9 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 9 +- .../locale/gl/LC_MESSAGES/Bookmark.po | 9 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 9 +- .../locale/ja/LC_MESSAGES/Bookmark.po | 9 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 9 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 9 +- .../locale/pl/LC_MESSAGES/Bookmark.po | 253 ++++ .../locale/sv/LC_MESSAGES/Bookmark.po | 9 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 9 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 9 +- .../locale/ast/LC_MESSAGES/CacheLog.po | 9 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 9 +- .../locale/br/LC_MESSAGES/CacheLog.po | 9 +- .../locale/de/LC_MESSAGES/CacheLog.po | 9 +- .../locale/es/LC_MESSAGES/CacheLog.po | 9 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 9 +- .../locale/gl/LC_MESSAGES/CacheLog.po | 9 +- .../locale/he/LC_MESSAGES/CacheLog.po | 9 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 9 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 9 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 9 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 9 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 9 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 9 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 9 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 9 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 9 +- .../LC_MESSAGES/CasAuthentication.po | 9 +- .../br/LC_MESSAGES/CasAuthentication.po | 9 +- .../ca/LC_MESSAGES/CasAuthentication.po | 9 +- .../de/LC_MESSAGES/CasAuthentication.po | 9 +- .../es/LC_MESSAGES/CasAuthentication.po | 9 +- .../eu/LC_MESSAGES/CasAuthentication.po | 9 +- .../fr/LC_MESSAGES/CasAuthentication.po | 9 +- .../gl/LC_MESSAGES/CasAuthentication.po | 9 +- .../hu/LC_MESSAGES/CasAuthentication.po | 9 +- .../ia/LC_MESSAGES/CasAuthentication.po | 9 +- .../mk/LC_MESSAGES/CasAuthentication.po | 9 +- .../nl/LC_MESSAGES/CasAuthentication.po | 9 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 9 +- .../ru/LC_MESSAGES/CasAuthentication.po | 9 +- .../tl/LC_MESSAGES/CasAuthentication.po | 9 +- .../uk/LC_MESSAGES/CasAuthentication.po | 9 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 9 +- .../LC_MESSAGES/ClientSideShorten.po | 9 +- .../de/LC_MESSAGES/ClientSideShorten.po | 9 +- .../es/LC_MESSAGES/ClientSideShorten.po | 9 +- .../eu/LC_MESSAGES/ClientSideShorten.po | 9 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 9 +- .../gl/LC_MESSAGES/ClientSideShorten.po | 9 +- .../he/LC_MESSAGES/ClientSideShorten.po | 9 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 9 +- .../id/LC_MESSAGES/ClientSideShorten.po | 9 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 9 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 9 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 9 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 9 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 9 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 9 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 9 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/es/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/gl/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 9 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 9 +- .../ast/LC_MESSAGES/DirectionDetector.po | 9 +- .../LC_MESSAGES/DirectionDetector.po | 9 +- .../br/LC_MESSAGES/DirectionDetector.po | 9 +- .../de/LC_MESSAGES/DirectionDetector.po | 9 +- .../es/LC_MESSAGES/DirectionDetector.po | 9 +- .../fi/LC_MESSAGES/DirectionDetector.po | 9 +- .../fr/LC_MESSAGES/DirectionDetector.po | 9 +- .../gl/LC_MESSAGES/DirectionDetector.po | 9 +- .../he/LC_MESSAGES/DirectionDetector.po | 9 +- .../ia/LC_MESSAGES/DirectionDetector.po | 9 +- .../id/LC_MESSAGES/DirectionDetector.po | 9 +- .../ja/LC_MESSAGES/DirectionDetector.po | 9 +- .../lb/LC_MESSAGES/DirectionDetector.po | 9 +- .../mk/LC_MESSAGES/DirectionDetector.po | 9 +- .../nb/LC_MESSAGES/DirectionDetector.po | 9 +- .../nl/LC_MESSAGES/DirectionDetector.po | 9 +- .../pt/LC_MESSAGES/DirectionDetector.po | 9 +- .../ru/LC_MESSAGES/DirectionDetector.po | 9 +- .../tl/LC_MESSAGES/DirectionDetector.po | 9 +- .../uk/LC_MESSAGES/DirectionDetector.po | 9 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 9 +- .../locale/ar/LC_MESSAGES/Directory.po | 9 +- .../locale/ca/LC_MESSAGES/Directory.po | 9 +- .../locale/de/LC_MESSAGES/Directory.po | 9 +- .../locale/es/LC_MESSAGES/Directory.po | 9 +- .../locale/eu/LC_MESSAGES/Directory.po | 9 +- .../locale/fi/LC_MESSAGES/Directory.po | 9 +- .../locale/fr/LC_MESSAGES/Directory.po | 9 +- .../locale/gl/LC_MESSAGES/Directory.po | 9 +- .../locale/ia/LC_MESSAGES/Directory.po | 9 +- .../locale/ja/LC_MESSAGES/Directory.po | 9 +- .../locale/mk/LC_MESSAGES/Directory.po | 9 +- .../locale/nl/LC_MESSAGES/Directory.po | 9 +- .../locale/sv/LC_MESSAGES/Directory.po | 9 +- .../locale/tl/LC_MESSAGES/Directory.po | 9 +- .../locale/uk/LC_MESSAGES/Directory.po | 9 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 9 +- .../locale/br/LC_MESSAGES/DiskCache.po | 9 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 9 +- .../locale/de/LC_MESSAGES/DiskCache.po | 9 +- .../locale/es/LC_MESSAGES/DiskCache.po | 9 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 9 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 9 +- .../locale/gl/LC_MESSAGES/DiskCache.po | 9 +- .../locale/he/LC_MESSAGES/DiskCache.po | 9 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 9 +- .../locale/id/LC_MESSAGES/DiskCache.po | 9 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 9 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 9 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 9 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 9 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 9 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 9 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 9 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 9 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 9 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 9 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/gl/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/pl/LC_MESSAGES/Disqus.po | 46 + .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 9 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 9 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../es/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../gl/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 9 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/ca/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/de/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/es/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/gl/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/lt/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 9 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 9 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 9 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/eu/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/pl/LC_MESSAGES/Echo.po | 28 + plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 9 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 9 +- .../LC_MESSAGES/EmailAuthentication.po | 9 +- .../br/LC_MESSAGES/EmailAuthentication.po | 9 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 9 +- .../de/LC_MESSAGES/EmailAuthentication.po | 9 +- .../es/LC_MESSAGES/EmailAuthentication.po | 9 +- .../eu/LC_MESSAGES/EmailAuthentication.po | 9 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 9 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 9 +- .../gl/LC_MESSAGES/EmailAuthentication.po | 9 +- .../he/LC_MESSAGES/EmailAuthentication.po | 9 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 9 +- .../id/LC_MESSAGES/EmailAuthentication.po | 9 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 9 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 9 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 9 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 9 +- .../pl/LC_MESSAGES/EmailAuthentication.po | 28 + .../pt/LC_MESSAGES/EmailAuthentication.po | 9 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 9 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 9 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 9 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 9 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 9 +- .../ar/LC_MESSAGES/EmailRegistration.po | 9 +- .../br/LC_MESSAGES/EmailRegistration.po | 9 +- .../ca/LC_MESSAGES/EmailRegistration.po | 11 +- .../de/LC_MESSAGES/EmailRegistration.po | 9 +- .../es/LC_MESSAGES/EmailRegistration.po | 17 +- .../eu/LC_MESSAGES/EmailRegistration.po | 9 +- .../fr/LC_MESSAGES/EmailRegistration.po | 18 +- .../gl/LC_MESSAGES/EmailRegistration.po | 9 +- .../hu/LC_MESSAGES/EmailRegistration.po | 9 +- .../ia/LC_MESSAGES/EmailRegistration.po | 9 +- .../mk/LC_MESSAGES/EmailRegistration.po | 9 +- .../nl/LC_MESSAGES/EmailRegistration.po | 9 +- .../ru/LC_MESSAGES/EmailRegistration.po | 9 +- .../sv/LC_MESSAGES/EmailRegistration.po | 9 +- .../tl/LC_MESSAGES/EmailRegistration.po | 9 +- .../uk/LC_MESSAGES/EmailRegistration.po | 9 +- .../locale/ar/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/ca/LC_MESSAGES/EmailReminder.po | 49 + .../locale/de/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/es/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/eu/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/fr/LC_MESSAGES/EmailReminder.po | 16 +- .../locale/gl/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/ia/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 9 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 11 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/es/LC_MESSAGES/EmailSummary.po | 15 +- .../locale/eu/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/fr/LC_MESSAGES/EmailSummary.po | 43 +- .../locale/gl/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 9 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/es/LC_MESSAGES/Event.po | 419 ++++++ plugins/Event/locale/eu/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 11 +- plugins/Event/locale/gl/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 9 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 9 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/es/LC_MESSAGES/ExtendedProfile.po | 231 +++ .../locale/eu/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/gl/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/ja/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/pl/LC_MESSAGES/ExtendedProfile.po | 229 +++ .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 9 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/gl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 9 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 9 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 9 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/gl/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 9 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 9 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 9 +- .../locale/br/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/ca/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/es/LC_MESSAGES/FollowEveryone.po | 28 + .../locale/eu/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/gl/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/pl/LC_MESSAGES/FollowEveryone.po | 30 + .../locale/pt/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 9 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/ca/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/gl/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 9 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 9 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/eu/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/gl/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 9 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 9 +- .../locale/ca/LC_MESSAGES/Geonames.po | 9 +- .../locale/de/LC_MESSAGES/Geonames.po | 9 +- .../locale/es/LC_MESSAGES/Geonames.po | 19 +- .../locale/eu/LC_MESSAGES/Geonames.po | 9 +- .../locale/fi/LC_MESSAGES/Geonames.po | 9 +- .../locale/fr/LC_MESSAGES/Geonames.po | 9 +- .../locale/gl/LC_MESSAGES/Geonames.po | 9 +- .../locale/ia/LC_MESSAGES/Geonames.po | 9 +- .../locale/mk/LC_MESSAGES/Geonames.po | 9 +- .../locale/nl/LC_MESSAGES/Geonames.po | 9 +- .../locale/sv/LC_MESSAGES/Geonames.po | 9 +- .../locale/tl/LC_MESSAGES/Geonames.po | 9 +- .../locale/uk/LC_MESSAGES/Geonames.po | 9 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/ca/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/gl/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 9 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 9 +- .../locale/de/LC_MESSAGES/Gravatar.po | 9 +- .../locale/es/LC_MESSAGES/Gravatar.po | 9 +- .../locale/eu/LC_MESSAGES/Gravatar.po | 9 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 9 +- .../locale/gl/LC_MESSAGES/Gravatar.po | 9 +- .../locale/he/LC_MESSAGES/Gravatar.po | 9 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 9 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 9 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 9 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 9 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 9 +- .../locale/sv/LC_MESSAGES/Gravatar.po | 9 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 9 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 9 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/eu/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/gl/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 9 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 9 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../eu/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../gl/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 9 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 9 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/ca/LC_MESSAGES/Imap.po | 11 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/es/LC_MESSAGES/Imap.po | 58 + plugins/Imap/locale/eu/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/gl/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 9 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 9 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/es/LC_MESSAGES/InProcessCache.po | 23 + .../locale/fr/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/gl/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 9 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 9 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/eu/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/gl/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 9 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 9 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 9 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 9 +- plugins/Irc/locale/ca/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/es/LC_MESSAGES/Irc.po | 84 ++ plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/gl/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/tr/LC_MESSAGES/Irc.po | 9 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 9 +- .../de/LC_MESSAGES/LdapAuthentication.po | 9 +- .../es/LC_MESSAGES/LdapAuthentication.po | 17 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 9 +- .../gl/LC_MESSAGES/LdapAuthentication.po | 9 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 9 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 9 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 9 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 9 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 9 +- .../de/LC_MESSAGES/LdapAuthorization.po | 9 +- .../es/LC_MESSAGES/LdapAuthorization.po | 15 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 9 +- .../gl/LC_MESSAGES/LdapAuthorization.po | 9 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 9 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 9 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 9 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 9 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 9 +- .../locale/ca/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/es/LC_MESSAGES/LdapCommon.po | 43 + .../locale/fr/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/gl/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 9 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 9 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/es/LC_MESSAGES/LilUrl.po | 31 + .../LilUrl/locale/eu/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/gl/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 9 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 9 +- .../locale/ca/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/es/LC_MESSAGES/LinkPreview.po | 39 + .../locale/fr/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/gl/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 9 +- .../locale/ar/LC_MESSAGES/Linkback.po | 9 +- .../locale/ca/LC_MESSAGES/Linkback.po | 9 +- .../locale/de/LC_MESSAGES/Linkback.po | 9 +- .../locale/es/LC_MESSAGES/Linkback.po | 12 +- .../locale/fi/LC_MESSAGES/Linkback.po | 9 +- .../locale/fr/LC_MESSAGES/Linkback.po | 9 +- .../locale/gl/LC_MESSAGES/Linkback.po | 9 +- .../locale/he/LC_MESSAGES/Linkback.po | 9 +- .../locale/ia/LC_MESSAGES/Linkback.po | 9 +- .../locale/id/LC_MESSAGES/Linkback.po | 9 +- .../locale/mk/LC_MESSAGES/Linkback.po | 9 +- .../locale/nb/LC_MESSAGES/Linkback.po | 9 +- .../locale/nl/LC_MESSAGES/Linkback.po | 9 +- .../locale/pt/LC_MESSAGES/Linkback.po | 9 +- .../locale/ru/LC_MESSAGES/Linkback.po | 9 +- .../locale/tl/LC_MESSAGES/Linkback.po | 9 +- .../locale/uk/LC_MESSAGES/Linkback.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 9 +- .../locale/de/LC_MESSAGES/LogFilter.po | 9 +- .../locale/es/LC_MESSAGES/LogFilter.po | 25 + .../locale/fi/LC_MESSAGES/LogFilter.po | 9 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 9 +- .../locale/gl/LC_MESSAGES/LogFilter.po | 9 +- .../locale/he/LC_MESSAGES/LogFilter.po | 9 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 9 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 9 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 9 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 9 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 9 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 9 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 9 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 9 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/es/LC_MESSAGES/Mapstraction.po | 51 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 9 +- .../locale/de/LC_MESSAGES/Memcache.po | 9 +- .../locale/es/LC_MESSAGES/Memcache.po | 9 +- .../locale/fi/LC_MESSAGES/Memcache.po | 9 +- .../locale/fr/LC_MESSAGES/Memcache.po | 9 +- .../locale/gl/LC_MESSAGES/Memcache.po | 9 +- .../locale/he/LC_MESSAGES/Memcache.po | 9 +- .../locale/ia/LC_MESSAGES/Memcache.po | 9 +- .../locale/mk/LC_MESSAGES/Memcache.po | 9 +- .../locale/nb/LC_MESSAGES/Memcache.po | 9 +- .../locale/nl/LC_MESSAGES/Memcache.po | 9 +- .../locale/pt/LC_MESSAGES/Memcache.po | 9 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 9 +- .../locale/ru/LC_MESSAGES/Memcache.po | 9 +- .../locale/sv/LC_MESSAGES/Memcache.po | 9 +- .../locale/tl/LC_MESSAGES/Memcache.po | 9 +- .../locale/uk/LC_MESSAGES/Memcache.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 9 +- .../locale/de/LC_MESSAGES/Memcached.po | 9 +- .../locale/es/LC_MESSAGES/Memcached.po | 9 +- .../locale/fi/LC_MESSAGES/Memcached.po | 9 +- .../locale/fr/LC_MESSAGES/Memcached.po | 9 +- .../locale/gl/LC_MESSAGES/Memcached.po | 9 +- .../locale/he/LC_MESSAGES/Memcached.po | 9 +- .../locale/ia/LC_MESSAGES/Memcached.po | 9 +- .../locale/id/LC_MESSAGES/Memcached.po | 9 +- .../locale/ja/LC_MESSAGES/Memcached.po | 9 +- .../locale/mk/LC_MESSAGES/Memcached.po | 9 +- .../locale/nb/LC_MESSAGES/Memcached.po | 9 +- .../locale/nl/LC_MESSAGES/Memcached.po | 9 +- .../locale/pt/LC_MESSAGES/Memcached.po | 9 +- .../locale/ru/LC_MESSAGES/Memcached.po | 9 +- .../locale/sv/LC_MESSAGES/Memcached.po | 9 +- .../locale/tl/LC_MESSAGES/Memcached.po | 9 +- .../locale/uk/LC_MESSAGES/Memcached.po | 9 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 9 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/es/LC_MESSAGES/Meteor.po | 35 + .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/gl/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 9 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 9 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/es/LC_MESSAGES/Minify.po | 39 + .../Minify/locale/fr/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/gl/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 9 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 9 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/es/LC_MESSAGES/MobileProfile.po | 12 +- .../locale/eu/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 9 +- .../locale/de/LC_MESSAGES/ModHelper.po | 9 +- .../locale/es/LC_MESSAGES/ModHelper.po | 9 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 9 +- .../locale/gl/LC_MESSAGES/ModHelper.po | 9 +- .../locale/he/LC_MESSAGES/ModHelper.po | 9 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 9 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 9 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 9 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 9 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 9 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 9 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 9 +- .../ModPlus/locale/ca/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/es/LC_MESSAGES/ModPlus.po | 58 + .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/gl/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 9 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 9 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/es/LC_MESSAGES/Mollom.po | 23 + .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/gl/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 9 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 9 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/ca/LC_MESSAGES/Msn.po | 11 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/es/LC_MESSAGES/Msn.po | 23 +- plugins/Msn/locale/eu/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/gl/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 9 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 9 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/ca/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/es/LC_MESSAGES/NoticeTitle.po | 38 + .../locale/eu/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/gl/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 9 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 9 +- plugins/OMB/locale/br/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/ca/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/de/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/es/LC_MESSAGES/OMB.po | 57 + plugins/OMB/locale/eu/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/fr/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/gl/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 9 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 9 +- .../OStatus/locale/ca/LC_MESSAGES/OStatus.po | 12 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/gl/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 11 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 9 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../gl/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 9 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/eu/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/gl/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/sv/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 9 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 9 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 9 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 9 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/es/LC_MESSAGES/Orbited.po | 28 + .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/gl/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 9 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 9 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/gl/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 9 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 9 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/ca/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/eu/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/fur/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/gl/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/ja/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 9 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 9 +- .../locale/de/LC_MESSAGES/PostDebug.po | 9 +- .../locale/es/LC_MESSAGES/PostDebug.po | 9 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 9 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 9 +- .../locale/gl/LC_MESSAGES/PostDebug.po | 9 +- .../locale/he/LC_MESSAGES/PostDebug.po | 9 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 9 +- .../locale/id/LC_MESSAGES/PostDebug.po | 9 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 9 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 9 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 9 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 9 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 9 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 9 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 9 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 9 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 9 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../es/LC_MESSAGES/PoweredByStatusNet.po | 29 +- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 9 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 12 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 9 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 9 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 9 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/br/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/ca/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/eu/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/gl/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/ja/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/pl/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 9 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 9 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/gl/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 9 +- .../locale/af/LC_MESSAGES/Realtime.po | 9 +- .../locale/ar/LC_MESSAGES/Realtime.po | 9 +- .../locale/br/LC_MESSAGES/Realtime.po | 9 +- .../locale/ca/LC_MESSAGES/Realtime.po | 9 +- .../locale/de/LC_MESSAGES/Realtime.po | 9 +- .../locale/fr/LC_MESSAGES/Realtime.po | 9 +- .../locale/gl/LC_MESSAGES/Realtime.po | 9 +- .../locale/ia/LC_MESSAGES/Realtime.po | 9 +- .../locale/lv/LC_MESSAGES/Realtime.po | 9 +- .../locale/mk/LC_MESSAGES/Realtime.po | 9 +- .../locale/ne/LC_MESSAGES/Realtime.po | 9 +- .../locale/nl/LC_MESSAGES/Realtime.po | 9 +- .../locale/pl/LC_MESSAGES/Realtime.po | 9 +- .../locale/sv/LC_MESSAGES/Realtime.po | 9 +- .../locale/tl/LC_MESSAGES/Realtime.po | 9 +- .../locale/tr/LC_MESSAGES/Realtime.po | 9 +- .../locale/uk/LC_MESSAGES/Realtime.po | 9 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/es/LC_MESSAGES/Recaptcha.po | 35 + .../locale/fr/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/gl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/pl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/ca/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 12 +- .../locale/es/LC_MESSAGES/RegisterThrottle.po | 35 + .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/gl/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 9 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 9 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../br/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../ca/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../gl/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../pl/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 29 + .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../ReverseUsernameAuthentication.po | 9 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/gl/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/de/LC_MESSAGES/SQLStats.po | 9 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 9 +- .../locale/gl/LC_MESSAGES/SQLStats.po | 9 +- .../locale/he/LC_MESSAGES/SQLStats.po | 9 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 9 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 9 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 9 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 9 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 9 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 9 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/gl/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 9 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 9 +- .../locale/ca/LC_MESSAGES/SearchSub.po | 9 +- .../locale/de/LC_MESSAGES/SearchSub.po | 9 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 9 +- .../locale/gl/LC_MESSAGES/SearchSub.po | 9 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 9 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 9 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 9 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 9 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 9 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/gl/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/pl/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 9 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 12 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 9 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 9 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/gl/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 9 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 9 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/es/LC_MESSAGES/SlicedFavorites.po | 28 + .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/gl/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 9 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/es/LC_MESSAGES/SphinxSearch.po | 31 + .../locale/fr/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/gl/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 9 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 9 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/es/LC_MESSAGES/Spotify.po | 24 + .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 9 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 9 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../gl/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../locale/ca/LC_MESSAGES/SubMirror.po | 9 +- .../locale/de/LC_MESSAGES/SubMirror.po | 9 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 9 +- .../locale/gl/LC_MESSAGES/SubMirror.po | 9 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 9 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 9 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 9 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 9 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 9 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../gl/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../locale/br/LC_MESSAGES/TabFocus.po | 9 +- .../locale/de/LC_MESSAGES/TabFocus.po | 9 +- .../locale/es/LC_MESSAGES/TabFocus.po | 9 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 9 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 9 +- .../locale/he/LC_MESSAGES/TabFocus.po | 9 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 9 +- .../locale/id/LC_MESSAGES/TabFocus.po | 9 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 9 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 9 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 9 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 9 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 9 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 9 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 9 +- .../TagSub/locale/ar/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/gl/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 12 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 9 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 9 +- .../locale/de/LC_MESSAGES/TightUrl.po | 9 +- .../locale/es/LC_MESSAGES/TightUrl.po | 9 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 9 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 9 +- .../locale/he/LC_MESSAGES/TightUrl.po | 9 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 9 +- .../locale/id/LC_MESSAGES/TightUrl.po | 9 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 9 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 9 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 9 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 9 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 9 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 9 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 9 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 9 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 9 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 9 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 9 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 9 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/gl/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 9 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 9 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 9 +- .../locale/de/LC_MESSAGES/UserFlag.po | 9 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 9 +- .../locale/gl/LC_MESSAGES/UserFlag.po | 9 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 9 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 11 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 9 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 9 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 9 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 9 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 9 +- .../locale/br/LC_MESSAGES/UserLimit.po | 9 +- .../locale/de/LC_MESSAGES/UserLimit.po | 9 +- .../locale/es/LC_MESSAGES/UserLimit.po | 9 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 9 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 9 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 9 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 9 +- .../locale/he/LC_MESSAGES/UserLimit.po | 9 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 9 +- .../locale/id/LC_MESSAGES/UserLimit.po | 9 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 9 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 9 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 9 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 9 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 9 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 9 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 9 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 9 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 9 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 9 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 9 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 9 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/gl/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 9 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/gl/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 9 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 9 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/pl/LC_MESSAGES/XCache.po | 28 + .../XCache/locale/pt/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 9 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 9 +- plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po | 9 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 9 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 9 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 9 +- plugins/Xmpp/locale/pl/LC_MESSAGES/Xmpp.po | 94 ++ .../locale/br/LC_MESSAGES/YammerImport.po | 9 +- .../locale/de/LC_MESSAGES/YammerImport.po | 9 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 9 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 9 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 9 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 9 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 9 +- .../locale/pl/LC_MESSAGES/YammerImport.po | 348 +++++ .../locale/tl/LC_MESSAGES/YammerImport.po | 9 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 9 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 9 +- 1590 files changed, 10493 insertions(+), 9344 deletions(-) create mode 100644 plugins/AccountManager/locale/pl/LC_MESSAGES/AccountManager.po create mode 100644 plugins/Activity/locale/fr/LC_MESSAGES/Activity.po create mode 100644 plugins/Activity/locale/pl/LC_MESSAGES/Activity.po create mode 100644 plugins/Aim/locale/pl/LC_MESSAGES/Aim.po create mode 100644 plugins/ApiLogger/locale/pl/LC_MESSAGES/ApiLogger.po create mode 100644 plugins/AutoSandbox/locale/pl/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/Awesomeness/locale/pl/LC_MESSAGES/Awesomeness.po create mode 100644 plugins/Bookmark/locale/pl/LC_MESSAGES/Bookmark.po create mode 100644 plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po create mode 100644 plugins/Echo/locale/pl/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/pl/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailReminder/locale/ca/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/Event/locale/es/LC_MESSAGES/Event.po create mode 100644 plugins/ExtendedProfile/locale/es/LC_MESSAGES/ExtendedProfile.po create mode 100644 plugins/ExtendedProfile/locale/pl/LC_MESSAGES/ExtendedProfile.po create mode 100644 plugins/FollowEveryone/locale/es/LC_MESSAGES/FollowEveryone.po create mode 100644 plugins/FollowEveryone/locale/pl/LC_MESSAGES/FollowEveryone.po create mode 100644 plugins/Imap/locale/es/LC_MESSAGES/Imap.po create mode 100644 plugins/InProcessCache/locale/es/LC_MESSAGES/InProcessCache.po create mode 100644 plugins/Irc/locale/es/LC_MESSAGES/Irc.po create mode 100644 plugins/LdapCommon/locale/es/LC_MESSAGES/LdapCommon.po create mode 100644 plugins/LilUrl/locale/es/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LinkPreview/locale/es/LC_MESSAGES/LinkPreview.po create mode 100644 plugins/LogFilter/locale/es/LC_MESSAGES/LogFilter.po create mode 100644 plugins/Meteor/locale/es/LC_MESSAGES/Meteor.po create mode 100644 plugins/Minify/locale/es/LC_MESSAGES/Minify.po create mode 100644 plugins/ModPlus/locale/es/LC_MESSAGES/ModPlus.po create mode 100644 plugins/Mollom/locale/es/LC_MESSAGES/Mollom.po create mode 100644 plugins/NoticeTitle/locale/es/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/OMB/locale/es/LC_MESSAGES/OMB.po create mode 100644 plugins/Orbited/locale/es/LC_MESSAGES/Orbited.po create mode 100644 plugins/Recaptcha/locale/es/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/RegisterThrottle/locale/es/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/es/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/SlicedFavorites/locale/es/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SphinxSearch/locale/es/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/Spotify/locale/es/LC_MESSAGES/Spotify.po create mode 100644 plugins/XCache/locale/pl/LC_MESSAGES/XCache.po create mode 100644 plugins/Xmpp/locale/pl/LC_MESSAGES/Xmpp.po create mode 100644 plugins/YammerImport/locale/pl/LC_MESSAGES/YammerImport.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 5165df27f1..1f64e29b11 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,20 +15,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index 1ef04c8c81..7cb07a212d 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,16 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -6292,15 +6291,14 @@ msgstr "Робін лічыць, што гэта немагчыма." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d байт" +msgstr[1] "%1$d байты" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6308,11 +6306,11 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " "upload a smaller version." msgstr[0] "" -"Файл ня можа быць болей %1$d байта, а дасланы Вамі файл ўтрымлівае %2$d " -"байт. Паспрабуйце загрузіць меншую вэрсію." +"Файл ня можа быць болей %1$d байта, а дасланы Вамі файл ўтрымлівае %2$s. " +"Паспрабуйце загрузіць меншую вэрсію." msgstr[1] "" -"Файл ня можа быць болей %1$d байты, а дасланы Вамі файл ўтрымлівае %2$d " -"байтаў. Паспрабуйце загрузіць меншую вэрсію." +"Файл ня можа быць болей %1$d байты, а дасланы Вамі файл ўтрымлівае %2$s. " +"Паспрабуйце загрузіць меншую вэрсію." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6536,15 +6534,15 @@ msgstr "" "Вы ўжо стварылі %d ці болей тэгаў, што зьяўляецца дазволенай колькасьцю " "тэгаў. Паспрабуйце выкарыстаць ці выдаліць некаторыя існуючыя тэгі." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." msgstr "" -"Вы ўжо маеце %1$d ці болей людзей у сьпісе %2$s, што зьяўляецца дазволенай " -"колькасьцю. Паспрабуйце выдаліць каго-небудзь са сьпісу." +"Вы ўжо маеце %1$d ці болей людзей у сьпісе %2$s, што зьяўляецца максымальна " +"дазволенай колькасьцю. Паспрабуйце, спачатку, выдаліць каго-небудзь са " +"сьпісу." #. TRANS: Exception thrown when inserting a list subscription in the database fails. msgid "Adding list subscription failed." @@ -6879,312 +6877,314 @@ msgstr "Пакуль яшчэ немагчыма апрацоўваць убуд #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Пакуль яшчэ немагчыма апрацоўваць убудаваны зьмест Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. msgid "You cannot make changes to this site." -msgstr "" +msgstr "Вы ня можаце зьмяняць гэты сайт." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. msgid "Changes to that panel are not allowed." -msgstr "" +msgstr "Зьмены для гэтай панэлі не дазволеныя." #. TRANS: Client error message. msgid "showForm() not implemented." -msgstr "" +msgstr "showForm() не рэалізаваная." #. TRANS: Client error message msgid "saveSettings() not implemented." -msgstr "" +msgstr "saveSettings() не рэалізаваная." #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Home" -msgstr "" +msgstr "Галоўная старонка" #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" -msgstr "" +msgstr "Адміністратар" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" -msgstr "" +msgstr "Асноўная канфігурацыя сайта" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" -msgstr "" +msgstr "Сайт" #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" -msgstr "" +msgstr "Канфігурацыя карыстальніка" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "User" -msgstr "" +msgstr "Карыстальнік" #. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" -msgstr "" +msgstr "Канфігурацыя доступу" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Access" -msgstr "" +msgstr "Доступ" #. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" -msgstr "" +msgstr "Канфігурацыя шляхоў" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Paths" -msgstr "" +msgstr "Шляхі" #. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" -msgstr "" +msgstr "Канфігурацыя сэсіяў" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "Сэсіі" #. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" -msgstr "" +msgstr "Рэдагаваць паведамленьне сайту" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site notice" -msgstr "" +msgstr "Паведамленьне сайта" #. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" -msgstr "" +msgstr "Канфігурацыя здымкаў" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "Здымкі" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "Устанавіць ліцэнзію сайта" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "License" -msgstr "" +msgstr "Ліцэнзія" #. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" -msgstr "" +msgstr "Канфігурацыя дапаўненьняў" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Plugins" -msgstr "" +msgstr "Дапаўненьні" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" +"API патрабуе доступ для чытаньня і запісу, але Вы маеце толькі доступ для " +"чытаньня." #. TRANS: OAuth exception thrown when no application is found for a given consumer key. msgid "No application for that consumer key." -msgstr "" +msgstr "Няма дастасаваньня да гэтага спажывецкага ключа." #. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." -msgstr "" +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." -msgstr "" +msgstr "Няма карыстальніка для гэтага ключа." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. msgid "Could not authenticate you." -msgstr "" +msgstr "Немагчыма Вас аўтэнтыфікаваць." #. TRANS: Form input field label for application icon. msgid "Icon" -msgstr "" +msgstr "Мініятура" #. TRANS: Form guide. msgid "Icon for this application" -msgstr "" +msgstr "Мініятура для гэтага дастасаваньня" #. TRANS: Form input field label for application name. msgid "Name" -msgstr "" +msgstr "Назва" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. #, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Апішыце Вашае дастасаваньне %d сымбалем" +msgstr[1] "Апішыце Вашае дастасаваньне %d сымбалямі" #. TRANS: Form input field instructions. msgid "Describe your application" -msgstr "" +msgstr "Апішыце Вашае дастасаваньне" #. TRANS: Form input field label. #. TRANS: Text area label on group edit form; contains description of group. #. TRANS: Field label for description of list. #. TRANS: Dropdown option for searching in profiles. msgid "Description" -msgstr "" +msgstr "Апісаньне" #. TRANS: Form input field instructions. msgid "URL of the homepage of this application" -msgstr "" +msgstr "URL-адрас хатняй старонкі гэтага дастасаваньня" #. TRANS: Form input field label. msgid "Source URL" -msgstr "" +msgstr "URL-адрас крыніцы" #. TRANS: Form input field instructions. msgid "Organization responsible for this application" -msgstr "" +msgstr "Арганізацыя адказная за гэтае дастасаваньне" #. TRANS: Form input field label. msgid "Organization" -msgstr "" +msgstr "Арганізацыя" #. TRANS: Form input field instructions. msgid "URL for the homepage of the organization" -msgstr "" +msgstr "URL-адрас хатняй старонкі арганізацыі" #. TRANS: Form input field instructions. msgid "URL to redirect to after authentication" -msgstr "" +msgstr "URL-адрас для перанакіраваньня пасьля аўтэнтыфікацыі" #. TRANS: Radio button label for application type msgid "Browser" -msgstr "" +msgstr "Браўзэр" #. TRANS: Radio button label for application type msgid "Desktop" -msgstr "" +msgstr "Працоўны стол" #. TRANS: Form guide. msgid "Type of application, browser or desktop" -msgstr "" +msgstr "Тып дастасаваньня, браўзэр ці апэрацыйная сыстэма" #. TRANS: Radio button label for access type. msgid "Read-only" -msgstr "" +msgstr "Толькі чытаньне" #. TRANS: Radio button label for access type. msgid "Read-write" -msgstr "" +msgstr "Чытаньне і запіс" #. TRANS: Form guide. msgid "Default access for this application: read-only, or read-write" msgstr "" +"Доступ па змоўчваньні для гэтага дастасаваньня: толькі чытаньне ці чытаньне " +"і запіс" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Далучаныя дастасаваньні" +msgstr "Скасаваць зьмены дастасаваньня." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Новае дастасаваньне" +msgstr "Захаваць зьмены дастасаваньня." #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" -msgstr "" +msgstr "Невядомае дастасаваньне" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " -msgstr "" +msgstr " ад " #. TRANS: Application access type msgid "read-write" -msgstr "" +msgstr "чытаньне і запіс" #. TRANS: Application access type msgid "read-only" -msgstr "" +msgstr "толькі чытаньне" #. 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 "Пацьверджаны доступ %1$s — «%2$s»." #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. #, php-format msgid "Access token starting with: %s" -msgstr "" +msgstr "Ключ доступу пачынаецца з: %s" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" -msgstr "" +msgstr "Адклікаць" #. TRANS: Submit button text to accept a group membership request on approve group form. #. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" -msgstr "" +msgstr "Прыняць" #. TRANS: Submit button text to reject a group membership request on approve group form. #. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" -msgstr "" +msgstr "Адмовіцца" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." -msgstr "" +msgstr "Элемэнт «author» павінен утрымліваць элемэнт «name»." #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. msgid "Do not use this method!" -msgstr "" +msgstr "Не выкарыстоўвайце гэты мэтад!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. #, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "" +msgstr "Лента запісаў для людзей са сьпісу %1$s карыстальніка %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "" +msgstr "Абнаўленьні сьпісу %2$s карыстальніка %1$s на %3$s!" #. TRANS: Title. msgid "Notices where this attachment appears" -msgstr "" +msgstr "Паведамленьні, дзе зьяўляецца гэтае далучэньне" #. TRANS: Title. msgid "Tags for this attachment" -msgstr "" +msgstr "Тэгі для гэтага далучэньня" #. TRANS: Exception thrown when a password change fails. msgid "Password changing failed." -msgstr "" +msgstr "Немагчыма зьмяніць пароль." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. msgid "Password changing is not allowed." -msgstr "" +msgstr "Зьмена паролю не дазволеная." #. TRANS: Title for the form to block a user. msgid "Block" -msgstr "" +msgstr "Заблякаваць" #. TRANS: Description of the form to block a user. msgid "Block this user" @@ -7193,64 +7193,64 @@ msgstr "Заблякаваць гэтага карыстальніка" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Скасаваць запыт да далучэньне" #. TRANS: Button text for form action to cancel a subscription request. msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "" +msgstr "Скасаваць запыт на падпіску" #. TRANS: Title for command results. msgid "Command results" -msgstr "" +msgstr "Вынікі каманды" #. TRANS: Title for command results. msgid "AJAX error" -msgstr "" +msgstr "Памылка AJAX" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" -msgstr "" +msgstr "Каманда выкананая" #. TRANS: E-mail subject when a command has failed. msgid "Command failed" -msgstr "" +msgstr "Каманда ня выкананая" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. msgid "Notice with that id does not exist." -msgstr "" +msgstr "Запіс з такім ідэнтыфікатарам не існуе." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. msgid "User has no last notice." -msgstr "" +msgstr "Карыстальнік ня мае апошняга запісу." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #, php-format msgid "Could not find a user with nickname %s." -msgstr "" +msgstr "Немагчыма знайсьці карыстальніка з іменем %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "Немагчыма знайсьці лякальнага карыстальніка з іменем %s." #. TRANS: Error text shown when an unimplemented command is given. msgid "Sorry, this command is not yet implemented." -msgstr "" +msgstr "Прабачце, функцыянальнасьць гэтай каманды яшчэ ня створаная." #. TRANS: Command exception text shown when a user tries to nudge themselves. msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Няма сэнсу падштурхоўваць самога сябе!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. #, php-format msgid "Nudge sent to %s." -msgstr "" +msgstr "Штуршок дасланы %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -7262,32 +7262,35 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Падпісаны: %1$s\n" +"Падпісаных: %2$s\n" +"Запісаў: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. msgid "Could not create favorite: Already favorited." -msgstr "" +msgstr "Немагчыма дадаць да ўлюблёных: ужо да іх адносіцца." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." -msgstr "" +msgstr "Запіс пазначаны як улюблёны." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "%1$s далучыўся да групы %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "%1$s пакінуў групу %2$s" #. TRANS: Error displayed if tagging a user fails. #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "Немагчыма дадаць тэг %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. @@ -7295,25 +7298,25 @@ msgstr "" #, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$s дадаў тэг %2$s" +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. #, php-format msgid "Invalid tag: \"%s\"" -msgstr "" +msgstr "Няслушны тэг: «%s»" #. TRANS: Error displayed if untagging a user fails. #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "Немагчыма выдаліць тэг %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7321,39 +7324,39 @@ msgstr "" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Наступны тэг быў выдалены з карыстальніка %1$s: %2$s." +msgstr[1] "Наступныя тэгі былі выдалены з карыстальніка %1$s: %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #. TRANS: Whois output. %s is the full name of the queried user. #, php-format msgid "Fullname: %s" -msgstr "" +msgstr "Поўнае імя: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a location. #, php-format msgid "Location: %s" -msgstr "" +msgstr "Месцазнаходжаньне: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a homepage. #, php-format msgid "Homepage: %s" -msgstr "" +msgstr "Хатняя старонка: %s" #. TRANS: Whois output. %s is the bio information of the queried user. #, php-format msgid "About: %s" -msgstr "" +msgstr "Пра: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #. TRANS: %s is a remote profile. @@ -7362,6 +7365,8 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" +"%s гэта аддалены профіль; Вы можаце толькі даслаць прамое паведамленьне " +"ўдзельнікам на тым за самым сэрвэры." #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -7371,118 +7376,122 @@ msgstr "" msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." msgstr[0] "" +"Паведамленьне занадта вялікае - максымум %1$d сымбаль, Вы даслалі %2$d." msgstr[1] "" +"Паведамленьне занадта вялікае - максымум %1$d сымбалі, Вы даслалі %2$d." #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). msgid "You can't send a message to this user." -msgstr "" +msgstr "Вы ня можаце дасылаць паведамленьні гэтаму карыстальніку." #. TRANS: Error text shown sending a direct message fails with an unknown reason. msgid "Error sending direct message." -msgstr "" +msgstr "Памылка адпраўкі прамога паведамленьня." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. #, php-format msgid "Notice from %s repeated." -msgstr "" +msgstr "Запіс з %s паўтораны." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Запіс занадта вялікі - максымум %1$d сымбаль, Вы даслалі %2$d." +msgstr[1] "Запіс занадта вялікі - максымум %1$d сымбалі, Вы даслалі %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. #, php-format msgid "Reply to %s sent." -msgstr "" +msgstr "Адказ %s дасланы." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. msgid "Error saving notice." -msgstr "" +msgstr "Памылка захаваньня запісу." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. msgid "Specify the name of the user to subscribe to." -msgstr "" +msgstr "Пазначце імя ўдзельніка для падпіскі." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. msgid "Can't subscribe to OMB profiles by command." -msgstr "" +msgstr "Немагчыма падпісацца камандай на OMB-профілі." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "Падпісаны на %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. msgid "Specify the name of the user to unsubscribe from." -msgstr "" +msgstr "Пазначце імя ўдзельніка для адпіскі." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "Адпісаны ад %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. msgid "Command not yet implemented." -msgstr "" +msgstr "Каманда яшчэ ня выкананая." #. TRANS: Text shown when issuing the command "off" successfully. msgid "Notification off." -msgstr "" +msgstr "Абвяшчэньне адключанае." #. TRANS: Error text shown when the command "off" fails for an unknown reason. msgid "Can't turn off notification." -msgstr "" +msgstr "Не магчыма адключыць абвяшчэньне." #. TRANS: Text shown when issuing the command "on" successfully. msgid "Notification on." -msgstr "" +msgstr "Абвяшчэньне ўключанае." #. TRANS: Error text shown when the command "on" fails for an unknown reason. msgid "Can't turn on notification." -msgstr "" +msgstr "Не магчыма ўключыць абвяшчэньне." #. TRANS: Error text shown when issuing the login command while login is disabled. msgid "Login command is disabled." -msgstr "" +msgstr "Каманда ўваходу ў сыстэму адключаная." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" +"Гэтую спасылку можна выкарыстаць толькі адзін раз і яна дзейная толькі 2 " +"хвіліны: %s." #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "Падпаска %s скасаваная." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. msgid "You are not subscribed to anyone." -msgstr "" +msgstr "Вы не падпісаны ні на нікога." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Вы падпісаны на гэтага чалавека:" +msgstr[1] "Вы падпісаны на гэтых людзей:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. msgid "No one is subscribed to you." -msgstr "" +msgstr "Ніхто на Вас не падпісаны." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index e7ea8c0798..ce3e9e5f14 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,18 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:38+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 3327c13bb8..7a8b944b10 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,18 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -226,15 +225,14 @@ msgid "No such user." msgstr "N'eus ket eus an implijer-se." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Oberezhioù %s" +msgstr "Degemer - neudennad" #. 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 "Oberezhioù %s" +msgstr "Neudennad oberezhioù %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. @@ -762,42 +760,36 @@ msgid "You cannot delete lists that do not belong to you." msgstr "" #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." msgstr "N'eo ket an implijer-mañ ezel eus ur strollad." #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "N'oc'h ket ezel eus ar strollad-mañ." +msgstr "N'och ket aotreet da ouzhpennañ izili d'ar roll-mañ." #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "Mankout a ra ar profil." +msgstr "Rankout a rit spisaat un ezel." #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "N'oc'h ket ezel eus ar strollad-mañ." +msgstr "N'och ket aotreet da zilemel izili deus ar roll-mañ." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." -msgstr "" +msgstr "An implijer a glaskit dilemel n'eo ket ezel deus ar roll." #. TRANS: Client error displayed when trying to create a list without a name. -#, fuzzy msgid "A list must have a name." -msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." +msgstr "Ur roll a rank kaout un anv." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "N'eo ket an implijer-mañ koumanantet d'ar roll." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "N'oc'h ket koumanantet d'ar profil-se." +msgstr "N'oc'h ket koumanantet d'ar roll-mañ." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -973,7 +965,7 @@ msgstr "N'eo ket skoret an hentenn HTTP." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. -#, fuzzy, php-format +#, php-format msgid "Unsupported format: %s." msgstr "Diembreget eo ar furmad : %s" @@ -1600,9 +1592,8 @@ msgid "Yes" msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." -msgstr "Stankañ an implijer-mañ" +msgstr "Stankañ an implijer-mañ." #. TRANS: Server error displayed when blocking a user fails. msgid "Failed to save block information." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 252e03edcc..57653d6402 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,18 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6291,15 +6290,14 @@ msgstr "El Robin pensa que quelcom és impossible." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d byte" +msgstr[1] "%1$d bytes" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6307,11 +6305,11 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " "upload a smaller version." msgstr[0] "" -"Cap fitxer pot ser major de %1$d byte i el fitxer que heu enviat era de %2$d " -"bytes. Proveu de pujar una versió de mida menor." +"Cap fitxer pot ser major de %1$d byte i el fitxer que heu enviat n'era d'%2" +"$s. Proveu de pujar una versió de mida menor." msgstr[1] "" -"Cap fitxer pot ser major de %1$d bytes i el fitxer que heu enviat era de %2" -"$d bytes. Proveu de pujar una versió de mida menor." +"Cap fitxer pot ser major de %1$d bytes i el fitxer que heu enviat n'era de %2" +"$s bytes. Proveu de pujar una versió de mida menor." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6540,15 +6538,14 @@ msgstr "" "Ja heu creat %d o més etiquetes, que és el màxim nombre d'etiquetes permès. " "Proveu de reemplaçar o eliminar etiquetes que ja existeixen." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." msgstr "" "Ja teniu %1$d o més persones a la llista %2$s, que és el nombre màxim " -"permès. Proveu de treure'n de la llista uns quants primer." +"permès. Proveu de treure'n de la llista uns altres primer." #. TRANS: Exception thrown when inserting a list subscription in the database fails. msgid "Adding list subscription failed." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index a881b31327..87922bf339 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,19 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:44+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 24e219f86c..61e5697ba7 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -35,18 +35,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -4768,7 +4767,7 @@ msgstr "Antworten an %1$s, Seite %2$d" #. TRANS: %s is a user nickname. #, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "Feed der Nachrichten von %s (Activity Streams JSON)" +msgstr "Feed der Antworten von %s (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -5390,7 +5389,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5398,7 +5397,7 @@ msgid "" msgstr "" "**%s** hat ein Konto auf %%%%site.name%%%%, einem [Mikroblogging](http://de." "wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien Software " -"[StatusNet](http://status.net/). " +"[StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5799,9 +5798,10 @@ msgstr "%s Mitglieder warten auf Bestätigung" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" +msgstr "" +"Abonnenten von %1$s, die auf die Aufnahmebestätigung warten, Seite %2$d" #. TRANS: Page notice for group members page. msgid "A list of users awaiting approval to subscribe to you." @@ -5924,9 +5924,9 @@ msgid "%s is not listening to anyone." msgstr "%s hat niemanden abonniert." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "Feed der Nachrichten von %s (Atom)" +msgstr "Feed der Abonnementen von %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. msgctxt "LABEL" @@ -5945,9 +5945,9 @@ msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Nachrichten-Feed des Tags „%s“ (Atom)" +msgstr "Feed der Nachrichten für den Tag %s (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6000,10 +6000,9 @@ msgid "List user" msgstr "Limit" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Limit" +msgstr "Listen" #. TRANS: Field title on list form. #, fuzzy @@ -6333,7 +6332,6 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6589,7 +6587,6 @@ msgstr "" "Du hast bereits %d oder mehr Tags erstellt, was die maximal zulässige Anzahl " "von Tags ist. Benutze oder lösche einige bereits vorhandene Tags." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 5c1e1ac3a5..33dcb0e77e 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,19 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:48+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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index a231d232a5..0853a48af3 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,18 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:50+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 8be3318dda..921f10d19f 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: ArkBlitz +# Author: Armando-Martin # Author: Barucomx # Author: Brion # Author: Crazymadlover @@ -18,6 +19,7 @@ # Author: Peter17 # Author: Plaxed # Author: Translationista +# Author: Xuacu # -- # This file is distributed under the same license as the StatusNet package. # @@ -25,18 +27,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:52+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -1080,7 +1081,7 @@ msgstr "No se pudo crear el canal para la lista - %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 / Actualizaciones que mencionan %2$s" +msgstr "%1$s / Mensaxes que mencionen a %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, @@ -6300,15 +6301,14 @@ msgstr " Robin piensa que algo es imposible." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d byte" +msgstr[1] "%1$d bytes" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6316,11 +6316,11 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " "upload a smaller version." msgstr[0] "" -"Ningún archivo puede ser de tamaño mayor a %1$d bytes y el archivo que " -"enviaste es de %2$d bytes. Trata de subir una versión más pequeña." +"Ningún archivo puede ser de tamaño mayor a %1$d byte y el archivo que " +"enviaste es de %2$s bytes. Trata de subir una versión más pequeña." msgstr[1] "" "Ningún archivo puede ser de tamaño mayor a %1$d bytes y el archivo que " -"enviaste es de %2$d bytes. Trata de subir una versión más pequeña." +"enviaste es de %2$s bytes. Trata de subir una versión más pequeña." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6547,15 +6547,14 @@ msgstr "" "Ya ha creado %d o más etiquetas que el máximo permitido de etiquetas. " "Intente utilizar o eliminar algunas etiquetas existentes." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." msgstr "" -"Ya tienes %1$d o más personas en lista de %2$s , que es el máximo " -"permitido. Pruebe a eliminar algunos primero." +"Ya tienes %1$d o más personas en la lista %2$s, que es el máximo permitido. " +"Pruebe a eliminar algunos primero." #. TRANS: Exception thrown when inserting a list subscription in the database fails. msgid "Adding list subscription failed." diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 565b2e6786..d9cff7882e 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -89,7 +88,7 @@ msgstr "Izena emateko gonbidapena soilik." #. TRANS: Checkbox label for configuring site as invite only. msgid "Invite only" -msgstr "Gonbidatu soilik" +msgstr "Gonbidapen bidez soilik" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). msgid "Disable new registrations." @@ -1525,7 +1524,7 @@ msgstr "Avatarra ezabatua." #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" -msgstr "Babeskopia-kontua" +msgstr "Kontuaren babeskopia egin" #. TRANS: Client exception thrown when trying to backup an account while not logged in. msgid "Only logged-in users can backup their account." @@ -2086,7 +2085,7 @@ msgstr "Erakundea luzeegia da (gehienez 255 karaktere)." #. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. #. TRANS: Form validation error show when an organisation name has not been provided in the new application form. msgid "Organization homepage is required." -msgstr "Erakundearen orri nagusia derrigorrezkoa da." +msgstr "Erakundearen webgunea derrigorrezkoa da." #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. @@ -3200,7 +3199,7 @@ msgstr "Erabili formulario hau aplikazio berri bat erregistratzeko." #. TRANS: Validation error shown when not providing a source URL in the "New application" form. msgid "Source URL is required." -msgstr "Sorburu URLa ezinbestekoa da." +msgstr "Iturburu URLa ezinbestekoa da." #. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. msgid "Could not create application." @@ -3673,7 +3672,7 @@ msgstr "Itxurentzako zerbitzaria." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." -msgstr "Itzurentzako web bidea." +msgstr "Itxurentzako web bidea." #. TRANS: Field label in Paths admin panel. msgid "SSL server" @@ -4258,7 +4257,7 @@ msgstr "Ezin izan dira etiketak gorde." #. 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. msgid "Restore account" -msgstr "Leheneratu kontua" +msgstr "Leheneratu babeskopiatik" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -6106,7 +6105,7 @@ msgstr "Erabiltzaile berriak" #. TRANS: Field label in user admin panel for setting new user welcome text. msgid "New user welcome" -msgstr "Erabiltzaile berriaren ongi etorria" +msgstr "Erabiltzaile berriari ongi etorria" #. TRANS: Tooltip in user admin panel for setting new user welcome text. msgid "Welcome text for new users (maximum 255 characters)." @@ -6118,7 +6117,7 @@ msgstr "Harpidetza lehenetsia" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. msgid "Automatically subscribe new users to this user." -msgstr "Erabiltzaile berriak erabiltzaile honi harpidetu automatikoki." +msgstr "Erabiltzaile berriak beste hauetara harpidetu automatikoki." #. TRANS: Form legend in user admin panel. msgid "Invitations" @@ -6276,7 +6275,6 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6521,7 +6519,6 @@ msgstr "" "kopurura iritsi zara. Saiatu etiketa batzuk ezabatzen edo existitzen direnak " "erabiltzen." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -9609,7 +9606,7 @@ msgstr "Kendu erabiltzaile honekiko harpidetza" #. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Kendu harpidetza" +msgstr "Harpidetza kendu" #. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index a009ee8853..0dac4ef7d5 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-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,10 +29,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -7315,7 +7314,6 @@ msgstr "لغو کردن" #. TRANS: Submit button text to accept a group membership request on approve group form. #. TRANS: Submit button text to accept a subscription request on approve sub form. -#, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "پذیرفتن" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index e3be81995b..09672ec6cf 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,18 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, fuzzy, php-format diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index ba3310bfe3..214169156e 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -6,17 +6,20 @@ # Author: Brunoperel # Author: Crochet.david # Author: DavidL +# Author: Gomoko # Author: Hashar # Author: IAlex # Author: Iketsi # Author: Isoph # Author: Jean-Frédéric +# Author: Joshuajohnlee # Author: Julien C # Author: Lockal # Author: McDutchie # Author: Netantho # Author: Notafish # Author: Od1n +# Author: OngolaBoy # Author: Otourly # Author: Patcito # Author: Peter17 @@ -32,18 +35,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -269,7 +271,7 @@ msgstr "Fil d'activité de %s" #. TRANS: %s is tagger's nickname. #, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "Flux pour les amis de %s (flux d'activités JSON)" +msgstr "Flux des amis de %s (flux d’activité JSON)" #. TRANS: %s is user nickname. #, php-format @@ -1349,24 +1351,22 @@ msgstr "Abonnement annulé." #. TRANS: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Notices %1$s has favorited on %2$s" -msgstr "Statuts de %1$s et ses amis dans %2$s!" +msgstr "Les annonces de %1$s ont été favorisées dans %2$s" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. -#, fuzzy msgid "Cannot add someone else's subscription." -msgstr "Impossible d’insérer un nouvel abonnement." +msgstr "Impossible d’ajouter un autre abonnement." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. msgid "Can only handle favorite activities." msgstr "Peut gérer seulement les activités favorites." #. TRANS: Client exception thrown when trying favorite an object that is not a notice. -#, fuzzy msgid "Can only fave notices." -msgstr "Ne peut gérer que les activités de publication." +msgstr "Seules les annonces peuvent être favorisées." #. TRANS: Client exception thrown when trying favorite a notice without content. msgid "Unknown notice." @@ -1393,9 +1393,8 @@ msgid "Cannot add someone else's membership." msgstr "Impossible d'ajouter l'adhésion de quelqu'un d'autre." #. TRANS: Client error displayed when not using the join verb. -#, fuzzy msgid "Can only handle join activities." -msgstr "Ne peut gérer que les activités de publication." +msgstr "Seules les activités de jointure peuvent être gérées." #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. msgid "Unknown group." @@ -1448,7 +1447,6 @@ msgid "People %1$s has subscribed to on %2$s" msgstr "%1$s s'est abonné à %2$s" #. TRANS: Client error displayed when not using the follow verb. -#, fuzzy msgid "Can only handle Follow activities." msgstr "Ne peut gérer que les activités de publication." @@ -1750,9 +1748,8 @@ msgid "Could not update user IM preferences." msgstr "Impossible de mettre à jour les préférences de messagerie instantanée." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Impossible d’insérer un nouvel abonnement." +msgstr "Impossible d'insérer les préférences IM de l'utilisateur." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1775,15 +1772,13 @@ msgstr "Conversation" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Flux des avis de %s (Atom)" +msgstr "Flux de conversation (Flux d'activité JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Flux des avis de %s (RSS 2.0)" +msgstr "Flux de conversation (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -2189,14 +2184,13 @@ msgstr "Supprimer la liste %s" #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Cette marque est invalide : %s." +msgstr "Liste de modification %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." -msgstr "Aucun pseudo ou ID." +msgstr "Aucun balisage ou ID." #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." @@ -2219,6 +2213,8 @@ msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" +"L'effacement de cette marque effacera définitivement toutes ses données " +"d'abonnement et d’adhésion. Souhaitez-vous vraiment continuer?" #. TRANS: Form validation error displayed if a given tag is invalid. msgid "Invalid tag." @@ -2235,6 +2231,8 @@ msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" +"Définir une étiquette publique comme privée supprimera définitivement tous " +"les abonnements existants. Voulez-vous toujours continuer ?" #. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." @@ -2520,9 +2518,9 @@ msgid "Featured users, page %d" msgstr "Utilisateurs en vedette - page %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "Une sélection d’utilisateurs à ne pas manquer dans %s" +msgstr "Une sélection d’utilisateurs importants sur %s." #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2765,13 +2763,13 @@ msgstr "Aucun résultat." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." msgstr "" -"Si vous ne trouvez pas le groupe que vous recherchez, vous pouvez [le créer]" -"(%%action.newgroup%%) vous-même." +"Si vous ne trouvez pas le groupe que vous cherchez pour, vous pouvez le " +"[créer] (%%action.newgroup%%) vous-même." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). @@ -2803,14 +2801,13 @@ msgstr "Paramètres de messagerie instantanée" #. 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 "" -"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" -"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" -"dessous." +"Vous pouvez envoyer et recevoir des annonces via [la messagerie instantanée]" +"(%%doc.im%%). Configurez votre adresse et vos paramètres ci-dessous." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2823,13 +2820,13 @@ msgstr "Adresse %s actuellement confirmée." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"En attente d’une confirmation pour cette adresse. Vérifiez votre compte " -"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " +"En attente d’une confirmation pour cette adresse. Vérifiez votre compte %1$s " +"pour un message avec la suite des instructions. (Avez-vous ajouté %2$s à " "votre liste de contacts ?)" #. TRANS: Field label for IM address. @@ -2846,9 +2843,8 @@ msgid "IM Preferences" msgstr "Préférences de messagerie instantanée" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Envoyer un avis" +msgstr "M’envoyer un avis" #. TRANS: Checkbox label in IM preferences form. msgid "Post a notice when my status changes." @@ -2860,9 +2856,8 @@ msgstr "" "Envoyez-moi des réponses de gens auprès desquels je ne suis pas abonné." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "Publier un MicroID pour mon adresse courriel." +msgstr "Publier un MicroID" #. TRANS: Server error thrown on database error updating IM preferences. msgid "Could not update IM preferences." @@ -2878,19 +2873,16 @@ msgid "No screenname." msgstr "Aucun pseudo." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Aucun avis." +msgstr "Aucun transport." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Impossible d’utiliser cet identifiant Jabber" +msgstr "Impossible de normaliser ce nom d'écran." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." -msgstr "Pseudo invalide." +msgstr "Nom d'écran non valide." #. TRANS: Message given saving IM address that is already set for another user. msgid "Screenname already belongs to another user." @@ -3038,9 +3030,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s a rejoint le groupe %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Inconnu" +msgstr "Erreur inconnue en rejoignant le groupe." #. 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. @@ -3110,7 +3101,6 @@ msgid "Type" msgstr "Type" #. TRANS: Dropdown field instructions in the license admin panel. -#, fuzzy msgid "Select a license." msgstr "Sélectionner une licence" @@ -3151,9 +3141,8 @@ msgid "URL for an image to display with the license." msgstr "URL d’une image à afficher avec la licence." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Enregistrer les paramètres de licence" +msgstr "Enregistrer les paramètres de licence." #. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." @@ -3175,9 +3164,8 @@ msgid "Login to site" msgstr "Ouverture de session" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" -msgstr "Pseudo ou adresse de courriel" +msgstr "Nom d’utilisateur ou adresse courriel" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. @@ -3192,10 +3180,9 @@ msgstr "" "ordinateurs publics ou partagés)" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" -msgstr "Ouvrir une session" +msgstr "Se connecter" #. TRANS: Link text for link to "reset password" on login page. msgid "Lost or forgotten password?" @@ -3274,9 +3261,8 @@ msgid "Could not create application." msgstr "Impossible de créer l’application." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Taille incorrecte." +msgstr "Image non valide." #. TRANS: Title for form to create a group. msgid "New group" @@ -3330,7 +3316,6 @@ msgstr "Erreur Ajax" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" msgstr "Nouvel avis" @@ -3387,9 +3372,9 @@ msgstr "Mises à jour avec « %s »" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "mises à jour correspondant au(x) terme(s) « %1$s » sur %2$s !" +msgstr "Mises à jour correspondant au critère de recherche \"%1$s\" sur %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" @@ -3520,13 +3505,12 @@ msgid "Not a supported data format." msgstr "Format de données non supporté." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Paramètres de messagerie instantanée" +msgstr "Paramètres d'IHM ancienne école" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Si vous préfèrez \"l'ancien style\", vous pouvez le définir ici" #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3535,12 +3519,13 @@ msgstr "Préférences enregistrées." msgid "Only stream mode (no conversations) in timelines" msgstr "" +"Mode fil de l'eau uniquement (pas de conversations) dans les chronologies" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Afficher la page de conversation sous forme d'arbres hiérarchiques" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Montrer les surnoms (et non les noms complets) dans les flux" #. TRANS: Button text to save a list. msgid "Save" @@ -3854,9 +3839,8 @@ msgid "Server to direct SSL requests to." msgstr "Serveur vers lequel diriger les requêtes SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Sauvegarder les paramètres du site" +msgstr "Sauvegarder les paramètres du chemin." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3887,17 +3871,18 @@ msgstr "Liste publique %1$s, page %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " -"[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " -"logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " -"messages courts à propos de leur vie et leurs intérêts. " +"Les listes sont la manière dont vous triez des personnes similaires sur %%" +"site.name%%, un service de [micro-blogging](http://en.wikipedia.org/wiki/" +"Micro-blogging) basé sur l'outil libre [StatusNet](http://status.net/). Vous " +"pouvez alors facilement garder trace de ce qu'elles font en s'abonnant à la " +"chronologie de la liste." #. TRANS: Client error displayed when a tagger is expected but not provided. msgid "No tagger." @@ -3925,14 +3910,12 @@ msgid "Private lists by you" msgstr "Listes privées par vous" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Nuage de marques public" +msgstr "Listes publiques de votre part" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Modifier le groupe %s" +msgstr "Listes de votre part" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. @@ -3942,9 +3925,9 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Avis marqués avec %1$s, page %2$d" +msgstr "Listes par %1$s, page %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" @@ -3974,9 +3957,8 @@ msgid "Public" msgstr "Public" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "Cette marque n’existe pas." +msgstr "Afficher les balises publics." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. @@ -3987,7 +3969,7 @@ msgstr "Aller" #. 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-" @@ -3995,33 +3977,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " -"[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " -"logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " -"messages courts à propos de leur vie et leurs intérêts. " +"Voici les listes créées par **%s**. Les listes sont la manière dont vous " +"triez les gens semblables sur %%%%site.name%%%%, un service de [micro-" +"blogging](http://en.wikipedia.org/wiki/Micro-blogging) basé sur l'outil " +"libre [StatusNet](http://status.net/). Vous pouvez facilement garder trace " +"de ce qu'elles font en vous abonnant à la chronologie de la liste." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%%)." +msgstr "%s n'a encore créé aucune [liste](%%%%doc.lists%%%%)." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listes contenant %s" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Avis marqués avec %1$s, page %2$d" +msgstr "Listes avec %1$s, page %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-" @@ -4029,47 +4011,48 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " -"[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " -"logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " -"messages courts à propos de leur vie et leurs intérêts. " +"Voici les listes pour ** %s **. Les listes sont la manière dont vous triez " +"les gens semblables sur %%%%site.name%%%%, un service de [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) basé sur l'outil libre " +"[StatusNet](http://status.net/). Vous pouvez facilement garder trace de ce " +"qu'elles font en vous abonnant à la chronologie de la 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). #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -"Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%%)." +"%s n'a pas encore été [ajouté à la liste](%%%%doc.lists%%%%) par quelqu'un." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "Abonné à %s." +msgstr "Abonnés à la liste %1$s par %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "%1$s a marqué « %2$s » la page %3$d" +msgstr "Abonnés à la liste %1$s par %2$s, page %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Abonné à %s." +msgstr "Listes auxquelles s'est abonné %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Abonnements de %1$s - page %2$d" +msgstr "Listes auxquelles s'est abonné %1$s, page %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4077,10 +4060,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " -"[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " -"logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " -"messages courts à propos de leur vie et leurs intérêts. " +"Voici les listes auxquelles a souscrit **%s**. Les listes sont la manière " +"dont vous triez les gens semblables sur %%%%site.name%%%%, un service de " +"[micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basé sur " +"l'outil libre [StatusNet](http://status.net/). Vous pouvez facilement garder " +"trace de ce qu'elles font en vous abonnant à la chronologie de la liste." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4096,9 +4080,8 @@ msgid "This action only accepts POST requests." msgstr "Cette action n'accepte que les requêtes de type POST." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Vous ne pouvez pas supprimer des utilisateurs." +msgstr "Vous ne pouvez pas gérer les modules complémentaires." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." @@ -4120,6 +4103,9 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Des plugins additionnels peuvent être activés et configurés manuellement. " +"Consultez la documentation du " +"plugin en ligne pour plus de détails." #. TRANS: Admin form section header msgid "Default plugins" @@ -4129,12 +4115,14 @@ msgstr "Extensions par défaut" msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Tous les plugins par défaut ont été désactivés depuis le fichier de " +"configuration du site." #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Champ non identifié %s ." #. TRANS: Page title. msgctxt "TITLE" @@ -4143,7 +4131,7 @@ msgstr "Résultats de la recherche" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "Le terme recherché doit avoir au moins 3 caractères." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4217,9 +4205,8 @@ msgstr "Emplacement" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" +msgstr "Où vous habitez, par exemple \"Ville, État (ou Région), Pays\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -4232,12 +4219,11 @@ msgid "Tags" msgstr "Balises" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " +"Balises pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "virgules ou des espaces" #. TRANS: Dropdownlist label in form for profile settings. @@ -4257,12 +4243,11 @@ msgid "What timezone are you normally in?" msgstr "Quel est votre fuseau horaire habituel ?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" -"M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour " -"les utilisateurs non-humains)" +"S’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour " +"les utilisateurs non-humains)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. msgid "Subscription policy" @@ -4312,18 +4297,18 @@ msgstr "La langue est trop longue (limitée à 50 caractères maximum)." #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Marque invalide : « %s »" +msgstr "Balise invalide: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Impossible de mettre à jour l’auto-abonnement." +msgstr "" +"Impossible de mettre à jour l’utilisateur pour s'abonner automatiquement ou " +"pour subscribe_policy." #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#, fuzzy msgid "Could not save location prefs." msgstr "Impossible d’enregistrer les préférences de localisation." @@ -4343,9 +4328,8 @@ msgid "Beyond the page limit (%s)." msgstr "Au-delà de la limite de page (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Impossible de récupérer le flux public." +msgstr "Impossible de récupérer la chronologie publique." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4742,7 +4726,7 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs while delisting a user. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "There was an unexpected error while delisting %s." msgstr "Une erreur inattendue est survenue lors du listage de %s." @@ -4753,6 +4737,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"Il y a eu un problème pour faire apparaitre %s. Le serveur distant ne répond " +"probablement pas correctement; veuillez réessayer plus tard." #. TRANS: Title after removing a user from a list. msgid "Unlisted" @@ -4793,9 +4779,9 @@ msgstr "Réponses à %1$s, page %2$d" #. 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 "Flux des réponses pour %s (Atom)" +msgstr "Flux des réponses pour %s (Flux d'activité JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4854,20 +4840,17 @@ msgid "Replies to %1$s on %2$s." msgstr "Réponses à %1$s sur %2$s !" #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis." +msgstr "Seuls les utilisateurs connectés peuvent reprendre leur compte." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Vous n’avez encore enregistré aucune application." +msgstr "Vous ne pouvez pas restaurer votre compte." #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. -#, fuzzy msgid "No uploaded file." -msgstr "Importer un fichier" +msgstr "Aucun fichier chargé." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." @@ -4913,16 +4896,21 @@ msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" +"Le fil a été restauré. Vos anciens messages devraient maintenant apparaître " +"dans la recherche et la page de votre profil." #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" +"Le fil sera restauré. Veuillez patienter quelques minutes pour les résultats." #. TRANS: Form instructions for feed restore. msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" +"Vous pouvez télécharger une chronologie sauvegardée au format Flux d'activité." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4953,9 +4941,9 @@ msgstr "L’utilisateur est déjà dans le bac à sable." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "Cette marque est invalide : %s." +msgstr "Cette liste est invalide : %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. @@ -4997,9 +4985,8 @@ msgid "Enable debugging output for sessions." msgstr "Activer la sortie de débogage pour les sessions." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Sauvegarder les paramètres d’accès" +msgstr "Enregistrer les paramètres de session" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -5012,11 +4999,11 @@ msgstr "Profil de l’application" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Créé par %1$s - accès %2$s par défaut - %3$d utilisateurs" -msgstr[1] "Créé par %1$s - accès %2$s par défaut - %3$d utilisateurs" +msgstr[0] "Créé par %1$s, accès %2$s par défaut, %3$d utilisateur" +msgstr[1] "Créé par %1$s, accès %2$s par défaut, %3$d utilisateurs" #. TRANS: Header on the OAuth application page. msgid "Application actions" @@ -5079,9 +5066,9 @@ msgid "Could not retrieve favorite notices." msgstr "Impossible d’afficher les favoris." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Flux pour les amis de %s (Atom)" +msgstr "Flux des favoris de %s (flux d’activité JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5146,9 +5133,9 @@ msgid "%1$s group, page %2$d" msgstr "Groupe %1$s, page %2$d" #. 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 "Fil des avis du groupe %s (Atom)" +msgstr "Flux des avis du groupe %s (flux d’activité JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5192,7 +5179,7 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. 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 +#, 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 " @@ -5200,9 +5187,9 @@ msgid "" "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 " +"[microblogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " -"messages courts à propos de leur vie et leurs intérêts. " +"messages courts au sujet de de leur vie et de leurs intérêts." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5236,75 +5223,74 @@ msgstr "Avis supprimé." #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" +msgstr "Fil d’actualités privé de votre liste « %1$s », page %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" +msgstr "Fil d’actualités de votre liste « %1$s », page %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "%1$s a marqué « %2$s » la page %3$d" +msgstr "Fil d’actualités de la liste « %1$s » de %2$s, page %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 "Fil d’actualités privé de votre liste %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 "Fil d’actualités de votre liste « %s »" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Réponses à %1$s sur %2$s !" +msgstr "Fil d’actualités de la liste « %1$s » de %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Flux pour les amis de %s (Atom)" +msgstr "Flux de la liste « %1$s » de %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Ceci est le flux pour %s et ses amis mais personne n’a rien posté pour le " -"moment." +"Ceci est de fil d’actualités de la liste « %1$s » de %2$s, mais personne n’y " +"a rien posté pour le moment." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." -msgstr "" +msgstr "Essayez de marquer davantage de personnes." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " -"en poster un !" +"Pourquoi ne pas [créer un compte](%%action.register%%) et commencer à suivre " +"ce fil d’actualités !" #. 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 "Licence" +msgstr "Listé" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5329,21 +5315,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s a marqué « %2$s »" +msgstr "Avis de %1$s marqué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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%1$s a marqué « %2$s » la page %3$d" +msgstr "Avis de %1$s marqués « %2$s », page %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Avis marqués avec %1$s, page %2$d" +msgstr "Avis de %1$s, page %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5353,9 +5339,9 @@ msgstr "Fil des avis pour %1$s marqués %2$s (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 "Flux des avis de %s (Atom)" +msgstr "Flux des avis de %s (flux d’activités JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5422,15 +5408,15 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool." msgstr "" -"**%s** est inscrit à %%%%site.name%%%%, service de [microblogging](http://fr." -"wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://" -"status.net/). " +"**%s** est inscrit à %%%%site.name%%%%, un service de [microblogging](http://" +"fr.wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet]" +"(http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5496,36 +5482,36 @@ msgid "Site name" msgstr "Nom du site" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Le nom de votre site, comme « Microblog de votre compagnie »" +msgstr "Le nom de votre site, tel que « Microblog de VotreSociété »." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Apporté par" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Texte utilisé pour le lien de crédits au bas de chaque page" +msgstr "" +"Texte utilisé pour le lien vers les attributions de crédit en bas de chaque " +"page." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Apporté par URL" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL utilisée pour le lien de crédits au bas de chaque page" +msgstr "" +"URL utilisée pour le lien vers les attributions de crédits en bas de chaque " +"page" #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Courriel" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Adresse de courriel de contact de votre site" +msgstr "Adresse de courriel de contact de votre site." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5545,12 +5531,11 @@ msgid "Default language" msgstr "Langue par défaut" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" "Langue du site lorsque la détection automatique des paramètres du navigateur " -"n'est pas disponible" +"n’est pas disponible." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5588,9 +5573,8 @@ msgid "SSL logo" msgstr "Logo SSL" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Sauvegarder les paramètres du site" +msgstr "Enregistrer les paramètres du site." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5621,9 +5605,8 @@ msgstr "" "autorisé)" #. TRANS: Button title to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Enregistrer l'avis du site" +msgstr "Enregistrer l’avis du site." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5721,7 +5704,6 @@ msgid "That is the wrong confirmation number." msgstr "Ce code de confirmation est incorrect." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." msgstr "Impossible de supprimer la confirmation de messagerie instantanée." @@ -5800,32 +5782,28 @@ msgid "Data snapshots" msgstr "Instantanés de données" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Quand envoyer des données statistiques aux serveurs status.net" +msgstr "Quand envoyer des données statistiques aux serveurs status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Fréquence" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Les instantanés seront envoyés une fois tous les N requêtes" +msgstr "Des instantanés seront envoyés une fois toutes les N visites du site." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de rapport" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Les instantanés seront envoyés à cette URL" +msgstr "Des instantanés seront envoyés à cette URL." #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Sauvegarder les paramètres des instantanés" +msgstr "Enregistrer les paramètres des instantanés." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5842,46 +5820,45 @@ msgstr "Vous ne pouvez approuver que vos propres abonnements en attente." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "Membres du groupe %s" +msgstr "Abonnés au groupe « %s » en attente d’approbation" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "Membres du groupe %1$s - page %2$d" +msgstr "Abonnés au groupe « %1$s » en attente d’approbation, page %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Liste des utilisateurs inscrits à ce groupe." +msgstr "" +"Liste des utilisateurs en attente d’approbation pour s’abonner à votre fil " +"d’actualité." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonné" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Vous devez ouvrir une session pour créer un groupe." +msgstr "Vous devez vous connecter pour vous désabonner d’une liste." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "Aucun argument d’identifiant." +msgstr "Aucun identifiant fourni." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." +msgstr "Impossible d’abonner l’utilisateur %1$s à la liste « %2$s » : %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "Abonnés à %1$s - page %2$d" +msgstr "%1$s s’est abonné à la liste « %2$s » de %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5954,7 +5931,7 @@ 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. -#, fuzzy, php-format +#, 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 " @@ -5962,11 +5939,9 @@ msgid "" "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." -"peoplesearch%%), cherchez les membres de groupes auquels vous vous " -"intéressez et nos [utilisateurs en vedette](%%action.featured%%). Si vous " -"êtes un [utilisateur de Twitter](%%action.twittersettings%%), vous pouvez " -"vous abonner automatiquement aux gens auquels vous êtes déjà abonné là-bas." +"à des personnes que vous connaissez. Essayez la [recherche de personnes](%%" +"action.peoplesearch%%), cherchez les membres de groupes auxquels vous vous " +"intéressez et nos [utilisateurs en vedette](%%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. @@ -5977,15 +5952,14 @@ msgid "%s is not listening to anyone." msgstr "%s ne suit actuellement personne." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "Flux des avis de %s (Atom)" +msgstr "Flux d’abonnement de %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" -msgstr "IM" +msgstr "Messagerie instantanée" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" @@ -5999,9 +5973,9 @@ msgstr "Avis marqués avec %1$s, page %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Flux des avis pour la marque %s (Atom)" +msgstr "Flux des avis pour la marque %s (flux d’activités JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6024,21 +5998,19 @@ msgstr "Flux des avis pour la marque %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." +msgstr "Vous ne pouvez pas marquer cet utilisateur." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "Profil de l’utilisateur" +msgstr "Lister un profil" #. 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 "Limites" +msgstr "Liste « %s »" #. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" @@ -6050,9 +6022,8 @@ msgid "User profile" msgstr "Profil de l’utilisateur" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "Limites" +msgstr "Liste utilisateur" #. TRANS: Field label on list form. msgctxt "LABEL" @@ -6060,30 +6031,27 @@ msgid "Lists" msgstr "Listes" #. TRANS: Field title on list form. -#, fuzzy msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " -"virgules ou des espaces" +"Listes de cet utilisateur (lettres, chiffres, -, ., et _) séparées par des " +"virgules ou des espaces." #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Balises" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Mot de passe enregistré." +msgstr "Listes enregistrées." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" -"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +"Remplissez ce formulaire pour ajouter vos abonnés ou vos abonnements aux " +"listes." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6107,14 +6075,13 @@ msgstr "Désabonné" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "Abonnés à %1$s - page %2$d" +msgstr "%1$s s’est désabonné de la liste « %2$s » de %3$s" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "Paramètres de messagerie instantanée" +msgstr "Paramètres des URL" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6149,8 +6116,8 @@ msgstr "URL plus longue que" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" -"Les URL plus longues que cela seront raccourcies, 0 signifie toujours " -"raccourcir." +"Les URL dans les avis plus longues que ceci seront raccourcies, 0 signifie " +"toujours raccourcir." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" @@ -6160,24 +6127,26 @@ msgstr "Texte plus long que" msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"Les URL dans les avis plus longues que ceci seront raccourcies, 0 signifie " +"toujours raccourcir." #. TRANS: Form validation error for form "Other settings" in user profile. msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Le service de réduction d’URL est trop long (50 caractères maximum)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "Contenu de l’avis invalide." +msgstr "Nombre non valide pour la longueur maximale des URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Contenu de l’avis invalide." +msgstr "Nombre non valide pour la longueur maximale des avis." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" +"Erreur lors de l’enregistrement des préférences de raccourcissement des URL " +"de l’utilisateur." #. TRANS: User admin panel title. msgctxt "TITLE" @@ -6198,9 +6167,9 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." +msgstr "Abonnement par défaut non valide : « %1$s » n’est pas un utilisateur." #. TRANS: Fieldset legend in user administration panel. msgctxt "LEGEND" @@ -6250,9 +6219,8 @@ msgstr "" "S’il faut autoriser les utilisateurs à inviter de nouveaux utilisateurs." #. TRANS: Button title to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." -msgstr "Sauvegarder les paramètres utilisateur" +msgstr "Enregistrer les paramètres utilisateur." #. 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. @@ -6294,12 +6262,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 "" -"Ce site est propulsé par %1$s, version %2$s, Copyright 2008-2010 StatusNet, " +"Ce site est propulsé par %1$s version %2$s. Copyright 2008–2010 StatusNet, " "Inc. et ses contributeurs." #. TRANS: Header for StatusNet contributors section on the version page. @@ -6311,7 +6279,6 @@ 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 " @@ -6319,12 +6286,11 @@ msgid "" "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 " -"GNU Affero telle qu’elle a été publiée par la Free Software Foundation, dans " -"sa version 3 ou (comme vous le souhaitez) toute version plus récente. " +"modifier en respectant les termes de la Licence Publique Générale GNU Affero " +"telle qu’elle a été publiée par la Free Software Foundation, dans sa version " +"3 ou (à votre convenance) toute version ultérieure." #. 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 " @@ -6332,9 +6298,9 @@ msgid "" "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 " -"D’ADAPTATION À UN BUT PARTICULIER. Pour plus de détails, voir la Licence " -"Publique Générale GNU Affero." +"GARANTIE ; sans même la garantie implicite de COMMERCIALISABILITÉ ni " +"d’ADAPTATION À UN BUT PARTICULIER. Consultez la Licence Publique Générale " +"GNU Affero pour plus de détails." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6395,10 +6361,9 @@ msgstr "Robin pense que quelque chose est impossible." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d octet" +msgstr[1] " %1$d octets" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -9433,7 +9398,7 @@ msgstr "Raccourcisseurs d’URL" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "IM" -msgstr "IM" +msgstr "Messagerie instantanée" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 32041910c4..272a6cd448 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 2a2a0e5e08..0e35d61e1d 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,18 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6298,15 +6297,14 @@ msgstr "Robin pensa que algo é imposible." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d byte" +msgstr[1] "%1$d bytes" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6315,10 +6313,10 @@ msgid_plural "" "upload a smaller version." msgstr[0] "" "Ningún ficheiro pode superar o tamaño de %1$d byte e o que enviou ocupaba %2" -"$d bytes. Probe a subir un ficheiro máis pequeno." +"$s. Probe a subir un ficheiro máis pequeno." msgstr[1] "" -"Ningún ficheiro pode superar os %1$d bytes e o que enviou ocupaba %2$d " -"bytes. Probe a subir un ficheiro máis pequeno." +"Ningún ficheiro pode superar os %1$d bytes e o que enviou ocupaba %2$s. " +"Probe a subir un ficheiro máis pequeno." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6544,9 +6542,8 @@ msgstr "" "Vostede xa creou %d ou máis etiquetas, que é o número máximo permitido. " "Intente usar ou borrar algunha das que xa existen." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 0301216366..2d1a331210 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,18 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -484,7 +483,7 @@ msgstr "לא ניתן לשלוח הודעות ישירות למשתמשים שא #. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." -msgstr "" +msgstr "אל תשלח לעצמך הודעה; פשוט אמור את זה לעצמך בשקט." #. TRANS: Client error displayed when requesting a status with a non-existing ID. #. TRANS: Client error displayed when trying to remove a favourite with an invalid ID. @@ -8283,18 +8282,16 @@ msgid " " msgstr "" #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "להדהד את העדכון הזה." +msgstr "להגיב לעדכון הזה।" #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "תגובות" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "למחוק את העדכון הזה." +msgstr "למחוק את העדכון הזה מציר הזמן." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8302,7 +8299,7 @@ msgstr "העדכון הודהד." #. TRANS: Field label for notice text. msgid "Update your status..." -msgstr "" +msgstr "עדכון מצב॥।" #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 61724e0eb8..edb1153a96 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,19 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:08+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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -132,7 +131,7 @@ msgstr "Składować" #. TRANS: Client error displayed when the session token is not okay. #. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Bě problem z twojim posedźenskim tokenom. Spytaj prošu hišće raz." #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." @@ -157,7 +156,7 @@ msgstr "Lisćina njeeksistuje." #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while listing %s." -msgstr "" +msgstr "Při listowanju %s je njewočakowany zmylk wustupił." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a profile URL. @@ -3688,7 +3687,7 @@ msgstr "SSL wužiwać" #. TRANS: Tooltip for field label in Paths admin panel. msgid "When to use SSL." -msgstr "" +msgstr "Hdy ma so SSL wužiwać." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server to direct SSL requests to." @@ -3909,7 +3908,7 @@ msgstr "Znjemóžnjeny" #. TRANS: Do not translate POST. #. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Tuta akcija jenož POST-naprašowanja akceptuje." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. msgid "You cannot administer plugins." @@ -4257,6 +4256,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" +"Čehodla [njeregistruješ konto](%%action.register%%) a sy prěni, kiž powěsć " +"wotpósćele!" #. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" @@ -5213,7 +5214,7 @@ msgstr "Mjeno twojeho sydła, kaž \"TwojePředewzaće - Mikroblog\"." #. TRANS: Field label on site settings panel. msgid "Brought by" -msgstr "" +msgstr "Dodaty wot" #. TRANS: Field title on site settings panel. msgid "Text used for credits link in footer of each page." @@ -5221,7 +5222,7 @@ msgstr "" #. TRANS: Field label on site settings panel. msgid "Brought by URL" -msgstr "" +msgstr "Dodaty wot URL" #. TRANS: Field title on site settings panel. msgid "URL used for credits link in footer of each page." @@ -5279,6 +5280,8 @@ msgstr "Limit duplikatow" #. TRANS: Field title on site settings panel. msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +"Kak dołho wužiwar dyrbi čakać (w sekundach), zo by móhł samsnu powěsć hišće " +"raz pósłać." #. TRANS: Fieldset legend for form to change logo. msgid "Logo" @@ -5332,7 +5335,7 @@ msgstr "SMS-nastajenja" #. TRANS: %%site.name%% is the name of the site. #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +msgstr "Móžeš SMS-powěsće přez e-mejl wot %%site.name%% přijeć." #. TRANS: Message given in the SMS settings if SMS is not enabled on the site. msgid "SMS is not available." @@ -5903,7 +5906,7 @@ msgstr "Přeprošenja zmóžnjene" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. msgid "Whether to allow users to invite new users." -msgstr "" +msgstr "Hač je dowolene, nowych wužiwarjow přeprosyć." #. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." @@ -6034,10 +6037,10 @@ msgstr "Robin měni, zo něšto je njemóžno." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%1$d bajt" +msgstr[1] "%1$d bajtaj" +msgstr[2] "%1d bajty" +msgstr[3] "%1$d bajtow" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, @@ -8997,7 +9000,7 @@ msgstr "Ludźo, kotřiž su %s abonowali." #, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "" +msgstr "Njesčinjeny (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 70067246b9..dc1b4d90f7 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:10+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index efbb36f8a8..1970497d7f 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,18 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -3903,7 +3902,7 @@ msgstr "Monstrar etiquettas public." #. TRANS: Submit button text on gallery action page. msgctxt "BUTTON" msgid "Go" -msgstr "Ir" +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). @@ -6264,15 +6263,14 @@ msgstr "Robin pensa que alique es impossibile." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d byte" +msgstr[1] "%1$d bytes" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6281,10 +6279,10 @@ msgid_plural "" "upload a smaller version." msgstr[0] "" "Nulle file pote esser plus grande que %1$d byte e le file que tu inviava ha %" -"2$d bytes. Tenta incargar un version minus grande." +"2$s. Tenta incargar un version minus grande." msgstr[1] "" "Nulle file pote esser plus grande que %1$d bytes e le file que tu inviava ha " -"%2$d bytes. Tenta incargar un version minus grande." +"%2$s. Tenta incargar un version minus grande." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6508,15 +6506,14 @@ msgstr "" "Tu ha jam create %d o plus etiquettas, que es le numero maxime de etiquettas " "permittite. Tenta usar o deler alcun etiquettas existente." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." msgstr "" -"Il ha jam %1$d o plus personas in le lista %2$s, que es le numero maxime " -"permittite. Tenta primo remover alteres del lista." +"Il ha jam %1$d o plus personas in le lista %2$s, que es le maximo " +"permittite. Remove alteres del lista primo." #. TRANS: Exception thrown when inserting a list subscription in the database fails. msgid "Adding list subscription failed." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 9a66eb9cdd..cb47d6c786 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Italian (Italiano) # Exported from translatewiki.net # +# Author: Gianfranco # Author: HalphaZ # Author: Milocasagrande # Author: Mpitt @@ -15,18 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:15+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -104,9 +104,8 @@ msgid "Closed" msgstr "Chiuso" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Salva impostazioni di accesso" +msgstr "Salva le impostazioni di accesso." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -240,22 +239,21 @@ msgid "No such user." msgstr "Utente inesistente." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Attività di %s" +msgstr "Timeline della Home" #. 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 "Attività di %s" +msgstr "Timeline della Home di %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 "Feed degli amici di %s (Atom)" +msgstr "Feed per gli amici di %s (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -316,10 +314,9 @@ msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" #. 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 "Inviti" +msgstr "Manda un invito" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -382,7 +379,7 @@ msgstr "Impossibile salvare il profilo." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#, fuzzy, php-format +#, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " "current configuration." @@ -390,11 +387,11 @@ msgid_plural "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr[0] "" -"Il server non è in grado di gestire tutti quei dati POST (%s byte) con la " -"configurazione attuale." +"Il server non è stato in grado di gestire tutti quei dati di POST (%s byte) " +"per la sua attuale configurazione." msgstr[1] "" -"Il server non è in grado di gestire tutti quei dati POST (%s byte) con la " -"configurazione attuale." +"Il server non è stato in grado di gestire tutti quei dati di POST (%s byte) " +"per la sua attuale configurazione." #. TRANS: Title for Atom feed. msgctxt "ATOM" @@ -426,9 +423,9 @@ msgid "%s favorites" msgstr "Preferiti di %s" #. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s memberships" -msgstr "Membri del gruppo %s" +msgstr "Membri di %s" #. TRANS: Client error displayed when users try to block themselves. msgid "You cannot block yourself!" @@ -452,7 +449,6 @@ msgid "No conversation with ID %d." msgstr "Nessuna conversazione con ID %d." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Conversazione" @@ -628,9 +624,8 @@ msgstr[1] "La descrizione è troppo lunga (massimo %d caratteri)." #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long location. -#, fuzzy msgid "Location is too long (maximum 255 characters)." -msgstr "Ubicazione troppo lunga (max 255 caratteri)." +msgstr "L'indirizzo è troppo lungo (max 255 caratteri)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. @@ -809,12 +804,11 @@ msgstr "Una lista deve avere un nome." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "L'utente indicato non fa parte di questa lista." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "Non hai una abbonamento a quel profilo." +msgstr "Non sei iscritto a questa lista." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -1029,11 +1023,11 @@ msgstr "Il client deve fornire un parametro \"status\" con un valore." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. -#, fuzzy, php-format +#, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." -msgstr[0] "È troppo lungo. Lunghezza massima %d carattere." -msgstr[1] "È troppo lungo. Lunghezza massima %d caratteri." +msgstr[0] "Troppo lungo. La massima lunghezza consentita è di %d carattere." +msgstr[1] "Troppo lungo. La massima lunghezza consentita è di %d caratteri." #. TRANS: Client error displayed when replying to a non-existing notice. msgid "Parent notice not found." @@ -1065,9 +1059,9 @@ msgstr "%1$s / Preferiti da %2$s" #. TRANS: Subtitle for timeline of most recent favourite notices by a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, #. TRANS: %3$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s updates favorited by %2$s / %3$s." -msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" +msgstr "%1$s aggiornamenti favoriti da %2$s / %3$s." #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. @@ -1143,9 +1137,8 @@ msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. -#, fuzzy msgid "Only the user can add to their own timeline." -msgstr "Solo l'utente può leggere la propria casella di posta." +msgstr "Solo l'utente può aggiungere alla propria timeline." #. TRANS: Client error displayed when using another format than AtomPub. msgid "Only accept AtomPub for Atom feeds." @@ -1153,7 +1146,7 @@ msgstr "" #. TRANS: Client error displayed attempting to post an empty API notice. msgid "Atom post must not be empty." -msgstr "" +msgstr "Un post Atom non può essere vuoto." #. TRANS: Client error displayed attempting to post an API that is not well-formed XML. msgid "Atom post must be well-formed XML." @@ -1175,15 +1168,15 @@ msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#, fuzzy, php-format +#, php-format msgid "No content for notice %d." -msgstr "Trova contenuto dei messaggi" +msgstr "Nessun contenuto per avviso di %d." #. TRANS: Client error displayed when using another format than AtomPub. #. TRANS: %s is the notice URI. -#, fuzzy, php-format +#, php-format msgid "Notice with URI \"%s\" already exists." -msgstr "Un messaggio con quel ID non esiste." +msgstr "Un avviso con URI \"%s\" esiste già." #. TRANS: Server error for unfinished API method showTrends. msgid "API method under construction." @@ -1247,30 +1240,34 @@ msgstr "Devi prima effettuare l'accesso." #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Solo gli admin di gruppo possono approvare o respingere le richieste di " +"adesione." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. -#, fuzzy msgid "Must specify a profile." -msgstr "Profilo mancante." +msgstr "Devi specificare un profilo." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. #. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Un elenco degli utenti in questo gruppo." +msgstr "%s non è nella coda di moderazione per questo gruppo." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" +"Errore interno: non è stato ricevuto comando né di cancellazione né di " +"annullamento." #. 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 "" +"Errore interno: ricevuti comandi sia di cancellazione che di interruzione." #. 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. @@ -1328,9 +1325,8 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. -#, fuzzy msgid "Cannot add someone else's subscription." -msgstr "Impossibile inserire un nuovo abbonamento." +msgstr "Non è possibile aggiungere una sottoscrizione di qualcun altro." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. #, fuzzy @@ -1343,9 +1339,8 @@ msgid "Can only fave notices." msgstr "Trova contenuto dei messaggi" #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." -msgstr "Sconosciuto" +msgstr "Avviso sconosciuto." #. TRANS: Client exception thrown when trying favorite an already favorited notice. msgid "Already a favorite." @@ -1386,14 +1381,12 @@ msgid "Blocked by admin." msgstr "Bloccato da un admin." #. TRANS: Client exception thrown when referencing a non-existing favorite. -#, fuzzy msgid "No such favorite." -msgstr "Nessun file." +msgstr "Quel preferito non esiste." #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. -#, fuzzy msgid "Cannot delete someone else's favorite." -msgstr "Impossibile eliminare un preferito." +msgstr "Impossibile eliminare un preferito altrui." #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group msgid "Not a member." @@ -1406,9 +1399,9 @@ msgstr "Impossibile salvare l'abbonamento." #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. #. TRANS: %d is the non-existing profile ID number. -#, fuzzy, php-format +#, php-format msgid "No such profile id: %d." -msgstr "Nessun profilo." +msgstr "Non esiste quell'id di profilo: %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. @@ -1417,9 +1410,8 @@ msgid "Profile %1$d not subscribed to profile %2$d." msgstr "Non hai una abbonamento a quel profilo." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "Impossibile salvare l'abbonamento." +msgstr "Non è possibile eliminare la sottoscrizione di qualcun altro." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. @@ -1437,15 +1429,15 @@ msgstr "" #. TRANS: Client exception thrown when subscribing to a non-existing profile. #. TRANS: %s is the unknown profile ID. -#, fuzzy, php-format +#, php-format msgid "Unknown profile %s." -msgstr "Tipo di file sconosciuto" +msgstr "Profilo sconosciuto %s." #. TRANS: Client error displayed trying to subscribe to an already subscribed profile. #. TRANS: %s is the profile the user already has a subscription on. -#, fuzzy, php-format +#, php-format msgid "Already subscribed to %s." -msgstr "Hai già l'abbonamento!" +msgstr "Già iscritto a %s." #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." @@ -1505,10 +1497,9 @@ msgstr "Anteprima" #. TRANS: Submit button text the OAuth application page to delete an application. #. TRANS: Button text for deleting a group. #. TRANS: Button text to delete a list. -#, fuzzy msgctxt "BUTTON" msgid "Delete" -msgstr "Elimina" +msgstr "Cancella" #. TRANS: Button on avatar upload page to upload an avatar. #. TRANS: Submit button to confirm upload of a user backup file for account restore. @@ -1550,7 +1541,7 @@ msgstr "Immagine eliminata." #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" -msgstr "" +msgstr "Fai un backup dell'account" #. TRANS: Client exception thrown when trying to backup an account while not logged in. #, fuzzy @@ -1559,7 +1550,7 @@ msgstr "Solo gli utenti collegati possono ripetere i messaggi." #. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." -msgstr "" +msgstr "Non puoi effettuare il backup tuo account." #. TRANS: Information displayed on the backup account page. msgid "" @@ -1764,10 +1755,9 @@ msgstr "Feed dei messaggi per %s (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Messaggi" +msgstr "Avviso" #. TRANS: Client exception displayed trying to delete a user account while not logged in. #, fuzzy @@ -1781,7 +1771,7 @@ msgstr "Non puoi eliminare utenti." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Sono sicuro." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1790,15 +1780,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 "Immagine eliminata." +msgstr "Account eliminato." #. 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 "Crea un account" +msgstr "Elimina account" #. TRANS: Form text for user deletion form. msgid "" @@ -1823,14 +1811,14 @@ msgstr "Conferma" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Non puoi eliminare utenti." +msgstr "" +"Immetti \"%s\" per confermare che davvero desideri cancellare il tuo account." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Elimina definitivamente il tuo account" +msgstr "Elimina definitivamente il tuo account." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1909,14 +1897,12 @@ msgstr "" "dell'utente dal database, senza una copia di sicurezza." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "Non eliminare il messaggio" +msgstr "Non eliminare questo gruppo." #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Elimina questo utente" +msgstr "Elimina questo gruppo." #. TRANS: Instructions for deleting a notice. msgid "" @@ -1954,7 +1940,6 @@ msgid "You can only delete local users." msgstr "Puoi eliminare solo gli utenti locali." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "Elimina utente" @@ -1977,9 +1962,8 @@ msgid "Do not delete this user." msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a user. -#, fuzzy msgid "Delete this user." -msgstr "Elimina questo utente" +msgstr "Elimina questo utente." #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" @@ -1998,10 +1982,9 @@ 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" +msgstr "Home" msgctxt "MENU" msgid "Docs" @@ -2012,18 +1995,16 @@ msgctxt "MENU" msgid "Help" msgstr "Aiuto" -#, fuzzy msgid "Getting started" -msgstr "Impostazioni salvate." +msgstr "Guida introduttiva" #. 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" +msgstr "A proposito di questo sito" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" @@ -2031,7 +2012,7 @@ msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Domande frequenti" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... @@ -2039,29 +2020,25 @@ msgctxt "MENU" msgid "Contact" msgstr "Contattaci" -#, fuzzy msgid "Contact info" -msgstr "Contattaci" +msgstr "Info di contatto" -#, fuzzy msgctxt "MENU" msgid "Tags" -msgstr "Etichette" +msgstr "Tag" msgid "Using tags" -msgstr "" +msgstr "Uso dei Tag" #. 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" +msgstr "Uso dei gruppi" msgctxt "MENU" msgid "API" @@ -2176,9 +2153,9 @@ msgstr "Opzioni salvate." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Elimina questo utente" +msgstr "Elimina la lista %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. @@ -2198,9 +2175,8 @@ msgid "Not a local user." msgstr "Utente inesistente." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Devi essere amministratore per modificare il gruppo." +msgstr "Devi essere il creatore del tag per poterlo modificare." #. TRANS: Form instruction for edit list form. #, fuzzy @@ -2208,9 +2184,8 @@ msgid "Use this form to edit the list." msgstr "Usa questo modulo per modificare il gruppo." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "Elimina messaggio" +msgstr "Eliminazione interrotta." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2219,15 +2194,14 @@ msgid "" msgstr "" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Dimensione non valida." +msgstr "Tag non valido." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Hai già ripetuto quel messaggio." +msgstr "Hai già un tag chiamato %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" @@ -2388,9 +2362,8 @@ msgstr "Quell'indirizzo email appartiene già a un altro utente." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#, fuzzy msgid "Could not insert confirmation code." -msgstr "Impossibile inserire il codice di conferma." +msgstr "Impossibile inserire codice di conferma." #. TRANS: Message given saving valid e-mail address that is to be confirmed. msgid "" @@ -2690,7 +2663,7 @@ msgstr "Un elenco degli utenti in questo gruppo." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Solo gli admin del gruppo possono approvare gli utenti." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. @@ -2715,7 +2688,6 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "Messaggi dai membri di %1$s su %2$s!" #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Gruppi" @@ -2849,14 +2821,12 @@ msgid "%s screenname." msgstr "Soprannome di %s." #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" -msgstr "Preferenze messaggistica" +msgstr "Preferenze IM" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Invia un messaggio" +msgstr "Inviami gli avvisi" #. TRANS: Checkbox label in IM preferences form. #, fuzzy @@ -2889,9 +2859,8 @@ msgid "No screenname." msgstr "Nessun soprannome." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Nessun messaggio." +msgstr "Nessun trasporto." #. TRANS: Message given saving IM address that cannot be normalised. #, fuzzy @@ -2968,9 +2937,9 @@ msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#, fuzzy, php-format +#, php-format msgid "Invalid email address: %s." -msgstr "Indirizzo email non valido: %s" +msgstr "Indirizzo email non valido: %s." #. TRANS: Page title when invitations have been sent. #, fuzzy @@ -3053,9 +3022,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s fa ora parte del gruppo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Sconosciuto" +msgstr "Errore sconosciuto nell'adesione al gruppo." #. 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. @@ -3167,9 +3135,8 @@ msgid "URL for an image to display with the license." msgstr "Indirizzo di un'immagine da visualizzare con la licenza." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Salva impostazioni licenza" +msgstr "Salva le impostazioni di licenza." #. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." @@ -3262,7 +3229,6 @@ msgid "No current status." msgstr "Nessun messaggio corrente." #. TRANS: This is the title of the form for adding a new application. -#, fuzzy msgid "New application" msgstr "Nuova applicazione" @@ -3283,18 +3249,16 @@ msgid "Could not create application." msgstr "Impossibile creare l'applicazione." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Dimensione non valida." +msgstr "Immagine non valida." #. TRANS: Title for form to create a group. msgid "New group" msgstr "Nuovo gruppo" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Non fai parte di questo gruppo." +msgstr "Non sei autorizzato a creare gruppi su questo sito." #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3307,7 +3271,6 @@ msgstr "Nuovo messaggio" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." @@ -3341,10 +3304,9 @@ msgstr "Errore di Ajax" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" -msgstr "Nuovo messaggio" +msgstr "Nuovo avviso" #. TRANS: Page title after sending a notice. msgid "Notice posted" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 0dfe66b826..94c46a7dac 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,18 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:17+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 99a7adb985..0228bfb038 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,18 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:18+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 6ccbd662bb..164d75edcb 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,18 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6427,7 +6426,6 @@ msgstr "" "이미 태그를 %d개 이상 만들었습니다. 태그 최대 개수입니다. 기존의 태그를 사용" "하거나 태그를 지우고 새로 만들어 보십시오." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 71f4b2f79f..816f7cedd0 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,18 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6286,15 +6285,14 @@ msgstr "Робин мисли дека нешто е невозможно." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d бајт" +msgstr[1] "%1$d бајти" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6303,10 +6301,10 @@ msgid_plural "" "upload a smaller version." msgstr[0] "" "Податотеките не смеат да бидат поголеми од %1$d бајт, а вие испративте " -"податотека од %2$d бајти. Подигнете помала верзија." +"податотека од %2$s бајти. Подигнете помала верзија." msgstr[1] "" "Податотеките не смеат да бидат поголеми од %1$d бајти, а вие испративте " -"податотека од %2$d бајти. Подигнете помала верзија." +"податотека од %2$s бајти. Подигнете помала верзија." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6538,9 +6536,8 @@ msgstr "" "Веќе имате создадено %d или повеќе ознаки, што претставува максималниот " "дозволен број на ознаки. Искористете или избришете некои постоечки ознаки." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 3352f9f6c0..cf886fc08b 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 455fd9b0b5..165856f1b1 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -13,18 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:28+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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ac357b561f..79fc1a2463 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,18 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -2006,7 +2005,7 @@ msgstr "Documentatie" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" -msgstr "Help" +msgstr "Hulp" msgid "Getting started" msgstr "Aan de slag" @@ -6326,15 +6325,14 @@ msgstr "Robin denkt dat iets onmogelijk is." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d byte" +msgstr[1] "%1$d bytes" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6342,11 +6340,11 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " "upload a smaller version." msgstr[0] "" -"Bestanden mogen niet groter zijn dan %1$d byte, en uw bestand was %2$d " -"bytes. Probeer een kleinere versie te uploaden." +"Bestanden mogen niet groter zijn dan %1$d byte, en uw bestand was %2$s. " +"Probeer een kleinere versie te uploaden." msgstr[1] "" -"Bestanden mogen niet groter zijn dan %1$d bytes, en uw bestand was %2$d " -"bytes. Probeer een kleinere versie te uploaden." +"Bestanden mogen niet groter zijn dan %1$d bytes, en uw bestand was %2$s. " +"Probeer een kleinere versie te uploaden." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6585,9 +6583,8 @@ msgstr "" "U hebt %d of meer labels aangemaakt. Meer labels aanmaken is niet mogelijk. " "Verwijder bestaande labels om nieuwe labels aan te kunnen maken." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. -#, fuzzy, php-format +#, php-format msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." @@ -8205,7 +8202,7 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. #, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s volt u nu op %2$s." +msgstr "%1$s volgt u nu op %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. diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 884e877df2..b47ebf2c1b 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Bartek50003 +# Author: BeginaFelicysym # Author: McDutchie # Author: Raven # Author: Sp5uhe @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -22,12 +23,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -51,6 +51,8 @@ msgstr "Wystąpił błąd." msgid "" "No configuration file found. Try running the installation program first." msgstr "" +"Nie znaleziono pliku konfiguracyjnego. Spróbuj najpierw uruchomić program " +"instalacyjny." #. TRANS: Error message displayed when trying to access a non-existing page. msgid "Unknown page" @@ -162,7 +164,7 @@ msgstr "Brak takiej listy." #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while listing %s." -msgstr "" +msgstr "Wystąpił nieoczekiwany błąd podczas wyświetlania %s." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a profile URL. @@ -171,6 +173,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly. Please try retrying later." msgstr "" +"Istnieje problem z wyświetleniem %s. Serwer zdalny prawdopodobnie nie " +"odpowiada poprawnie. Spróbuj ponownie później." #. TRANS: Title after adding a user to a list. msgctxt "TITLE" @@ -438,9 +442,8 @@ msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Rozmowa" +msgstr "Brak identyfikatora konwersacji." #. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). #, php-format @@ -764,7 +767,7 @@ msgstr "Nie odnaleziono listy." #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." -msgstr "" +msgstr "Nie możesz zaktualizować list, które nie należą do Ciebie." #. TRANS: Client error displayed when an unknown error occurs updating a list. #. TRANS: Client error displayed when an unknown error occurs viewing list members. @@ -775,7 +778,7 @@ msgstr "Wystąpił błąd." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." -msgstr "" +msgstr "Nie możesz usunąć list, które nie należą do Ciebie." #. TRANS: Client error displayed when referring to a non-list member. msgid "The specified user is not a member of this list." @@ -795,7 +798,7 @@ msgstr "Nie masz uprawnień do usuwania członków z listy." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." -msgstr "" +msgstr "Użytkownika, którego próbujesz usunąć z listy nie jest jej członkiem." #. TRANS: Client error displayed when trying to create a list without a name. msgid "A list must have a name." @@ -803,12 +806,11 @@ msgstr "Lista musi mieć nazwę." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "Wskazany użytkownik nie jest członkiem listy." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "Nie jesteś subskrybowany do tego profilu." +msgstr "Nie subskrybujesz tej listy." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -1068,9 +1070,9 @@ msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%3$s." #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for list - %s" -msgstr "Nie można utworzyć tokenów loginów dla %s" +msgstr "Nie można utworzyć kanału dla listy - %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. @@ -1107,9 +1109,9 @@ msgstr "Powtórzone dla %s" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." +msgstr "Ogłoszenia %1$s powtórzone dla %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -1119,9 +1121,9 @@ msgstr "Powtórzenia %s" #. TRANS: Subtitle of API time with retweets of me. #. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "Użytkownik %1$s oznaczył wpis %2$s jako ulubiony." +msgstr "Ogłoszenia %1$s, które powtórzył %2$s / %3$s." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1243,6 +1245,7 @@ msgstr "Musisz być zalogowany." #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Tylko administrator grupy może zatwierdzić lub anulować żądania dołączenia." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. @@ -1253,64 +1256,66 @@ msgstr "Należy określić profil." #. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Lista użytkowników znajdujących się w tej grupie." +msgstr "%s nie znajduje się w kolejce moderacji dla tej grupy." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Błąd wewnętrzny: nie otrzymano ani wycofania ani przerwania." #. 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 "Błąd wewnętrzny: otrzymano jednocześnie wycofanie i przerwanie." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." +msgstr "" +"Nie można anulować żądania użytkownika %1$s by przyłączyć się do grupy %2$s ." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Stan użytkownika %1$s na %2$s" +msgstr "Żądanie użytkownika %1$s by %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "Żądanie dołączenia zatwierdzone." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." -msgstr "" +msgstr "Żądanie dołączenia anulowane." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "Lista użytkowników znajdujących się w tej grupie." +msgstr "%s nie jest w kolejce moderacji twojej subskrypcji." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." -msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." +msgstr "" +"Nie można anulować ani zatwierdzić żądania dołączenia użytkownika %1$s do " +"grupy %2$s." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Stan użytkownika %1$s na %2$s" +msgstr "żądanie użytkownika %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Upoważniono subskrypcję" +msgstr "Zatwierdzono subskrypcję." #. TRANS: Message on page for user after rejecting a subscription request. msgid "Subscription canceled." @@ -1318,9 +1323,9 @@ msgstr "Subskrypcja anulowana." #. TRANS: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Notices %1$s has favorited on %2$s" -msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." +msgstr "Ogłoszenia z %1$s i zaliczono do ulubionych na %2$s" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. @@ -1336,9 +1341,8 @@ msgid "Can only fave notices." msgstr "Można tylko dodawać wpisy do ulubionych." #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." -msgstr "Nieznany wpis." +msgstr "Nieznane ogłoszenie." #. TRANS: Client exception thrown when trying favorite an already favorited notice. msgid "Already a favorite." @@ -1346,15 +1350,15 @@ msgstr "Jest już ulubiony." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "%s członków grupy" +msgstr "Przynależność użytkownika %s do grupy" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "Grupy %s są członkiem" +msgstr "Grupy, do których przynależy %1$s na %2$s" #. TRANS: Client exception thrown when trying subscribe someone else to a group. msgid "Cannot add someone else's membership." @@ -1410,9 +1414,9 @@ msgstr "Nie można usunąć subskrypcji innej osoby." #. 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 "Osoby subskrybowane do %s" +msgstr "Osoba %1$s subskrybowana do %2$s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1511,9 +1515,8 @@ msgid "No file uploaded." msgstr "Nie wysłano pliku." #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "Wybierz kwadratowy obszar obrazu do awatara" +msgstr "Wybierz kwadratowy obszar obrazu, który stanie się awatarem." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1567,9 +1570,8 @@ msgid "Backup" msgstr "Kopia zapasowa" #. TRANS: Title for submit button to backup an account on the backup account page. -#, fuzzy msgid "Backup your account." -msgstr "Wykonuje kopię zapasową konta" +msgstr "Kopia zapasowa Twojego konta." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1713,14 +1715,12 @@ msgstr "Ten adres został już potwierdzony." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Nie można zaktualizować wpisu użytkownika." +msgstr "Nie można zaktualizować preferencji IM użytkownika." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Nie można wprowadzić nowej subskrypcji." +msgstr "Nie można wstawić preferencji IM użytkownika." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1743,22 +1743,19 @@ msgstr "Rozmowa" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Kanał wpisów dla %s (Atom)" +msgstr "Kanał konwersacji (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Kanał wpisów dla %s (RSS 2.0)" +msgstr "Kanał konwersacji (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Wpisy" +msgstr "Ogłoszenie" #. TRANS: Client exception displayed trying to delete a user account while not logged in. msgid "Only logged-in users can delete their account." @@ -1896,9 +1893,8 @@ msgstr "" "widoczne na konkretnych osiach czasu." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "Nie usuwaj tej grupy" +msgstr "Nie usuwaj tej grupy." #. TRANS: Submit button title for 'Yes' when deleting a group. msgid "Delete this group." @@ -1922,12 +1918,10 @@ msgid "Are you sure you want to delete this notice?" msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." -msgstr "Nie usuwaj tego wpisu" +msgstr "Nie usuwaj tego ogłoszenia." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." msgstr "Usuń ten wpis" @@ -1981,80 +1975,70 @@ 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" +msgstr "Strona główna" msgctxt "MENU" msgid "Docs" -msgstr "" +msgstr "Dokumentacja" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#, fuzzy msgid "Getting started" -msgstr "Zapisano ustawienia." +msgstr "Pierwsze kroki" #. 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" +msgstr "O stronie" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "FAQ" msgid "Frequently asked questions" -msgstr "" +msgstr "Często zadawane pytania" #. 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" +msgstr "Informacje o kontakcie" -#, fuzzy msgctxt "MENU" msgid "Tags" msgstr "Znaczniki" msgid "Using tags" -msgstr "" +msgstr "Używanie zniaczników" #. 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" +msgstr "Korzystanie z grup" msgctxt "MENU" msgid "API" -msgstr "" +msgstr "API" msgid "RESTful API" -msgstr "" +msgstr "API RESTful" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2160,20 +2144,19 @@ msgstr "Zapisano opcje." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Usuń tego użytkownika" +msgstr "Usuń listę %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Nieprawidłowy znacznik osób: %s." +msgstr "Edytuj listę %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." msgstr "Brak pseudonimu lub identyfikatora." @@ -2182,14 +2165,12 @@ msgid "Not a local user." msgstr "Brak takiego użytkownika." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "Musisz być administratorem, aby zmodyfikować grupę." +msgstr "Musi być twórcą znacznika by go edytować." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Użyj tego formularza, aby zmodyfikować grupę." +msgstr "Użyj tego formularza, aby zmodyfikować listę." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2200,28 +2181,30 @@ msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" +"Usunięcie tego tagu spowoduje trwałe usunięcie wszystkich jego subskrypcji i " +"zapisów przynależności. Czy nadal chcesz kontynuować?" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Nieprawidłowy rozmiar." +msgstr "Nieprawidłowy znacznik." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Już powtórzono ten wpis." +msgstr "Masz już znacznik o nazwie %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" +"Ustawienie znacznika publicznego jako prywatnego spowoduje trwałe usunięcie " +"wszystkich istniejących jego subskrypcji. Czy nadal chcesz kontynuować?" #. TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Nie można zaktualizować użytkownika." +msgstr "Nie można zaktualizować listy." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2347,9 +2330,8 @@ msgid "No email address." msgstr "Brak adresu e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that email address." -msgstr "Nie można znormalizować tego adresu e-mail" +msgstr "Nie można znormalizować tego adresu e-mail." #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. @@ -2432,7 +2414,6 @@ msgid "This notice is already a favorite!" msgstr "Ten wpis jest już ulubiony." #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." msgstr "Usuń wpis z ulubionych" @@ -2505,7 +2486,7 @@ msgid "Featured users, page %d" msgstr "Znani użytkownicy, strona %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." msgstr "Wybór znanych użytkowników w serwisie %s" @@ -2596,12 +2577,10 @@ msgstr "" "grupy w przyszłości." #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "Nie blokuj tego użytkownika w tej grupie" +msgstr "Nie blokuj tego użytkownika z tej grupy." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." msgstr "Zablokuj tego użytkownika w tej grupie" @@ -2665,19 +2644,19 @@ msgstr "Lista użytkowników znajdujących się w tej grupie." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Tylko administrator grupy może zatwierdzać użytkowników." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "%s członków grupy" +msgstr "członkowie grupy %s oczekują na zatwierdzenie" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Członkowie grupy %1$s, strona %2$d" +msgstr "Członkowie grupy %1$s oczekujący na zatwierdzenie, strona %2$d" #. TRANS: Page notice for group members page. msgid "A list of users awaiting approval to join this group." @@ -2696,7 +2675,7 @@ msgstr "Grupy" #. TRANS: Title for all but the first page of the groups list. #. TRANS: %d is the page number. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "Groups, page %d" msgstr "Grupy, strona %d" @@ -2704,7 +2683,7 @@ msgstr "Grupy, strona %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -2746,13 +2725,13 @@ msgstr "Brak wyników." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." msgstr "" -"Jeśli nie można odnaleźć grupy, której szukasz, można samemu [ją utworzyć](%%" -"action.newgroup%%)." +"Jeśli nie można odnaleźć grupy, której szukasz, możesz samodzielnie [ją " +"utworzyć](%%action.newgroup%%)." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). @@ -2784,32 +2763,32 @@ msgstr "Ustawienia komunikatora" #. 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 "" -"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " -"Skonfiguruj adres i ustawienia poniżej." +"Możesz wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/" +"GTalk. Skonfiguruj adres i ustawienia poniżej." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." msgstr "Komunikator nie jest dostępny." #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. -#, fuzzy, php-format +#, php-format msgid "Current confirmed %s address." -msgstr "Obecnie potwierdzone adresy e-mail." +msgstr "Obecnie potwierdzony adres %s." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabber/GTalk, " -"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " +"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto %1$s, czy jest " +"nowa wiadomość wiadomość z dalszymi instrukcjami (dodałeś %2$s do listy " "znajomych?)." #. TRANS: Field label for IM address. @@ -2826,29 +2805,24 @@ msgid "IM Preferences" msgstr "Preferencje komunikatora" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Wyślij wpis" +msgstr "Wysyłaj do mnie wpisy" #. TRANS: Checkbox label in IM preferences form. msgid "Post a notice when my status changes." msgstr "Wyślij powiadomienie gdy zmieni się mój status." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Wyślij mi odpowiedzi przez Jabber/GTalk od osób, których nie subskrybuję." +msgstr "Wyślij mi odpowiedzi od osób, których nie subskrybcjuję." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" msgstr "Opublikuj MicroID adresu e-mail." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Nie można zaktualizować użytkownika." +msgstr "Nie można zaktualizować preferencji komunikatorów." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2856,45 +2830,36 @@ msgid "Preferences saved." msgstr "Zapisano preferencje." #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Brak pseudonimu." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Brak wpisu." +msgstr "Brak transportu." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." msgstr "Nie można znormalizować tego identyfikatora Jabbera" #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." msgstr "To nie jest prawidłowy pseudonim." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Identyfikator Jabbera należy już do innego użytkownika." +msgstr "Pseudonim należy już do innego użytkownika." #. TRANS: Message given saving valid IM address that is to be confirmed. -#, fuzzy msgid "A confirmation code was sent to the IM address you added." -msgstr "" -"Kod potwierdzający został wysłany na dodany adres komunikatora. Należy " -"zaakceptować otrzymywanie wiadomości od %s." +msgstr "Kod potwierdzający został wysłany na dodany adres komunikatora." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." msgstr "To jest błędny adres komunikatora." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "Nie można usunąć potwierdzenia komunikatora." +msgstr "Nie można usunąć potwierdzenia." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." @@ -2902,9 +2867,8 @@ msgstr "Anulowano potwierdzenie komunikatora." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#, fuzzy msgid "That is not your screenname." -msgstr "To nie jest twój numer telefonu." +msgstr "To nie jest twój pseudonim." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." @@ -3026,9 +2990,8 @@ msgid "%1$s joined group %2$s" msgstr "Użytkownik %1$s dołączył do grupy %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Nieznana grupa." +msgstr "Nieznany błąd dołączenia do grupy." #. 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. @@ -3138,7 +3101,6 @@ msgid "URL for an image to display with the license." msgstr "Adres URL obrazu do wyświetlenia z licencją." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." msgstr "Zapisz ustawienia licencji" @@ -3160,7 +3122,6 @@ msgid "Login to site" msgstr "Zaloguj się na witrynie" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" msgstr "Pseudonim lub adres e-mail" @@ -3255,9 +3216,8 @@ msgid "Could not create application." msgstr "Nie można utworzyć aplikacji." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Nieprawidłowy rozmiar." +msgstr "Nieprawidłowa grafika." #. TRANS: Title for form to create a group. msgid "New group" @@ -3278,9 +3238,8 @@ msgstr "Nowa wiadomość" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." -msgstr "Nie można wysłać wiadomości do tego użytkownika." +msgstr "Nie możesz wysłać wiadomości do tego użytkownika." #. TRANS: Form validator error displayed trying to send a direct message without content. #. TRANS: Client error displayed trying to send a notice without content. @@ -3312,7 +3271,6 @@ msgstr "Błąd AJAX" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" msgstr "Nowy wpis" @@ -3369,9 +3327,9 @@ msgstr "Aktualizacje z \"%s\"" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Aktualizacje pasujące do wyszukiwanego terminu \"%1$s\" na %2$s." +msgstr "Aktualizacje pasujące do wyszukiwanego wyrażenia \"%1$s\" na %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" @@ -3457,9 +3415,9 @@ msgstr "Nie znaleziono \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "Nie odnaleziono wpisu nadrzędnego." +msgstr "Nie odnaleziono wpisu %s." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3483,7 +3441,7 @@ msgstr "Nie znaleziono załącznika %s." #. TRANS: %s is a path. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr "\"%s\" nie jest obsługiwana dla żądań oembed." #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #, php-format @@ -3501,13 +3459,12 @@ msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Ustawienia komunikatora" +msgstr "Ustawienia interfejsu w starym stylu" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Jeśli podobał ci się \"stary sposób\", możesz ustawić to tutaj." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3515,13 +3472,13 @@ msgid "Settings saved." msgstr "Zapisano ustawienia." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Tylko tryb strumienia (bez konwersacji) na osiach czasu" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Pokaż stronę konwersacji jako drzewa hierarchiczne" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Pokaż pseudonimy (nie pełne nazwy) na osiach czasu" #. TRANS: Button text to save a list. msgid "Save" @@ -3615,7 +3572,6 @@ msgid "Same as password above." msgstr "Takie samo jak powyższe hasło." #. TRANS: Button text on page where to change password. -#, fuzzy msgctxt "BUTTON" msgid "Change" msgstr "Zmień" @@ -3627,12 +3583,10 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." #. 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 "Hasła nie pasują do siebie." +msgstr "Hasła nie są identyczne" #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." msgstr "Niepoprawne poprzednie hasło" @@ -3714,14 +3668,12 @@ msgid "Fancy URLs" msgstr "Eleganckie adresu URL" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" msgstr "" "Używać eleganckich (bardziej czytelnych i łatwiejszych do zapamiętania) " "adresów URL?" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "Theme" msgstr "Motyw" @@ -3861,92 +3813,87 @@ msgstr "Wyszukiwanie osób" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "Publiczna chmura znaczników" +msgstr "Publiczna lista %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" +msgstr "Publiczna lista %1$s , strona %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +"Listy są sposobem grupowania podobnych użytkowników na %%site.name%%, " +"usłudze [mikroblogowania](http://en.wikipedia.org/wiki/Micro-blogging) " +"opartej na wolnym narzędziu [StatusNet](http://status.net/). Możesz w prosty " +"sposób śledzić co robią subskrybując oś czasową listy." #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." msgstr "Nie ma takiego znacznika." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +msgstr "Osoby wymienione w %1$s na %2$s." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" +msgstr "Osoby wymienione w %1$s przez %2$s, strona %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#, fuzzy msgid "Creator" -msgstr "Utworzono" +msgstr "Twórca" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Zmodyfikuj grupę %s" +msgstr "Twoje prywatne listy" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" msgstr "Publiczna chmura znaczników" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Zmodyfikuj grupę %s" +msgstr "Twoje listy" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Listy użytkownika %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" +msgstr "Listy użytkownika %1$s, strona %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "Nie można wyświetlić prywatnych list innych użytkowników" #. TRANS: Mode selector label. msgid "Mode" msgstr "Tryb" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Wysłane wiadomości użytkownika %s" +msgstr "Listy dla użytkownika %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3955,7 +3902,7 @@ msgstr "Wybierz znacznik do filtrowania" #. TRANS: Checkbox title. msgid "Show private tags." -msgstr "" +msgstr "Pokaż prywatne znaczniki." #. TRANS: Checkbox label to show public tags. msgctxt "LABEL" @@ -3963,13 +3910,11 @@ msgid "Public" msgstr "Publiczny" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "Nie ma takiego znacznika." +msgstr "Pokaż publiczne znaczniki." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Przejdź" @@ -3977,7 +3922,7 @@ msgstr "Przejdź" #. 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-" @@ -3985,33 +3930,35 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +"Oto listy utworzone przez użytkownika **%s**. Listy są sposobem grupowania " +"podobnych użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania]" +"(http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu " +"[StatusNet](http://status.net/). Możesz w prosty sposób śledzić co robią " +"subskrybując oś czasową listy." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" -"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%%)." +"%s {{GENDER:%s|nie utworzył|nie utworzyła}} jeszcze żadnych [list](%%doc.tags" +"%%)." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listy zawierające %s" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" +msgstr "Listy zawierające użytkownika %1$s, strona %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-" @@ -4019,47 +3966,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +"Oto listy dla użytkownika **%s**. Listy są sposobem grupowania podobnych " +"użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://en." +"wikipedia.org/wiki/Micro-blogging) opartej na wolnym narzędziu [StatusNet]" +"(http://status.net/). Możesz w prosty sposób śledzić co robią subskrybując " +"oś czasową listy." #. 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. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%%)." +msgstr "%s nie znajduje się jeszcze na niczyich [listach](%%doc.tags%%)." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "Subskrybowano użytkownika %s." +msgstr "Subskrybenci listy %1$s użytkownika %2$s." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "%1$s nadał etykietę %2$s, strona %3$d" +msgstr "Subskrybenci listy %1$s użytkownika %2$s, strona %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Subskrybowano użytkownika %s." +msgstr "Listy subskrybowane przez użytkownika %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Subskrypcje użytkownika %1$s, strona %2$d" +msgstr "Listy subskrybowane przez użytkownika %1$s, strona %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4067,10 +4014,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"Oto listy subskrybowane przez użytkownika **%s**. Listy są sposobem " +"grupowania podobnych użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +"narzędziu [StatusNet](http://status.net/). Możesz w prosty sposób śledzić co " +"robią subskrybując oś czasową listy." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4086,9 +4034,8 @@ msgid "This action only accepts POST requests." msgstr "Ta czynność przyjmuje tylko żądania POST." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Nie można usuwać użytkowników." +msgstr "Nie możesz administrować wtyczkami." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." @@ -4100,7 +4047,6 @@ msgid "Enabled" msgstr "Włączone" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "Wtyczki" @@ -4113,20 +4059,20 @@ msgid "" msgstr "" #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "Domyślny język" +msgstr "Domyślne wtyczki" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Wszystkie domyślne wtyczki zostały wyłączone w pliku konfiguracji witryny." #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Niezidentyfikowane pole %s." #. TRANS: Page title. msgctxt "TITLE" @@ -4135,7 +4081,7 @@ 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." -msgstr "" +msgstr "Wyszukiwany ciąg znaków musi mieć co najmniej 3 znaki." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4182,18 +4128,17 @@ msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie." #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" -msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" -msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" +msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku." +msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach." +msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#, fuzzy msgid "Describe yourself and your interests." -msgstr "Opisz się i swoje zainteresowania" +msgstr "Opisz siebie i swoje zainteresowania." #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4210,9 +4155,8 @@ msgstr "Położenie" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" +msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -4225,13 +4169,12 @@ msgid "Tags" msgstr "Znaczniki" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " -"spacjami" +"spacjami." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" @@ -4250,32 +4193,32 @@ msgid "What timezone are you normally in?" msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" -"Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" +"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. msgid "Subscription policy" msgstr "Polityka subskrypcji" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Można obserwować tylko osoby." +msgstr "Pozwól wszystkim mnie obserwować" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Najpierw mnie zapytaj" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." msgstr "" +"Czy inni użytkownicy potrzebują Twojej zgody na śledzenie twoich " +"aktualizacji." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Uwidacznianie aktualizacji tylko dla śledzących mnie" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4304,13 +4247,12 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)." #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Nieprawidłowy znacznik: \"%s\"" +msgstr "Nieprawidłowy znacznik: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." @@ -4334,7 +4276,6 @@ msgid "Beyond the page limit (%s)." msgstr "Poza ograniczeniem strony (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." msgstr "Nie można pobrać publicznego strumienia." @@ -4350,22 +4291,18 @@ msgid "Public timeline" msgstr "Publiczna oś czasu" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Kanał publicznego strumienia (Atom)" +msgstr "Kanał publicznego strumienia (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" @@ -4416,9 +4353,9 @@ msgstr "" "Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "Użytkownik %s aktualizuje od każdego." +msgstr "Aktualizacje %s od wszystkich." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4531,7 +4468,6 @@ msgid "Password recovery requested" msgstr "Zażądano przywracania hasła" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" msgstr "Zapisano hasło." @@ -4578,7 +4514,6 @@ msgid "New password successfully saved. You are now logged in." msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." msgstr "Brak parametru identyfikatora." @@ -4610,10 +4545,9 @@ msgid "Registration not allowed." msgstr "Rejestracja nie jest dozwolona." #. 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 "" -"Nie można się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +"Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." @@ -4624,38 +4558,32 @@ msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." #. 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 "" "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " -"wpisy i połączyć się z przyjaciółmi i kolegami. " +"wpisy i połączyć się z przyjaciółmi i kolegami." #. 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 "Potwierdź" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "E-mail" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Zarejestruj się" @@ -4738,7 +4666,7 @@ msgstr "" #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while delisting %s." -msgstr "" +msgstr "Wystąpił nieoczekiwany błąd podczas skreślenia %s ." #. TRANS: Client error displayed when an unknown error occurs while listing a user. #. TRANS: %s is a profile URL. @@ -4747,11 +4675,12 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"Istnieje problem z wyświetleniem %s. Serwer zdalny prawdopodobnie nie " +"odpowiada poprawnie, spróbuj ponownie później." #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Licencja" +msgstr "Nienotowane" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4788,9 +4717,9 @@ msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" #. 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 "Kanał odpowiedzi dla użytkownika %s (Atom)" +msgstr "Kanał odpowiedzi dla użytkownika %s (Strumienie aktywności JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4842,9 +4771,9 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." -msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +msgstr "Odpowiedzi dla użytkownika %1$s na %2$s." #. TRANS: Client exception displayed when trying to restore an account while not logged in. msgid "Only logged-in users can restore their account." @@ -4910,7 +4839,6 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Kanał zostanie przywrócony. Proszę poczekać kilka minut na wyniki." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." @@ -4927,7 +4855,6 @@ msgid "You cannot revoke user roles on this site." msgstr "Nie można unieważnić rol użytkowników na tej witrynie." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "Użytkownik nie ma tej roli." @@ -4947,18 +4874,17 @@ msgstr "Użytkownik jest już ograniczony." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "Nieprawidłowy znacznik osób: %s." +msgstr "Nieprawidłowa lista: %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" +msgstr "Użytkownicy samootagowani znacznikiem %1$s, strona %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sesje" @@ -4968,7 +4894,6 @@ msgid "Session settings for this StatusNet site" msgstr "Ustawienia sesji tej witryny StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sesje" @@ -4980,9 +4905,8 @@ msgstr "Obsługa sesji" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Czy samodzielnie obsługiwać sesje." +msgstr "Samodzielna obsługa sesji." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4990,14 +4914,12 @@ msgid "Session debugging" msgstr "Debugowanie sesji" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Włącza wyjście debugowania dla sesji." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Zapisz ustawienia dostępu" +msgstr "Zapisz ustawienia sesji" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -5010,11 +4932,11 @@ msgstr "Profil aplikacji" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" -msgstr[1] "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" +msgstr[0] "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkownik" +msgstr[1] "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkownicy" msgstr[2] "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" #. TRANS: Header on the OAuth application page. @@ -5022,7 +4944,6 @@ msgid "Application actions" msgstr "Czynności aplikacji" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Edycja" @@ -5057,13 +4978,12 @@ msgid "Authorize URL" msgstr "Adres URL upoważnienia" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście " -"nie jest obsługiwana." +"Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu zwykłym tektem nie " +"jest obsługiwana." #. 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?" @@ -5080,9 +5000,9 @@ msgid "Could not retrieve favorite notices." msgstr "Nie można odebrać ulubionych wpisów." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "Kanał dla ulubionych wpisów użytkownika %s (Atom)" +msgstr "Kanał dla ulubionych wpisów użytkownika %s (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5147,9 +5067,9 @@ msgid "%1$s group, page %2$d" msgstr "Grupa %1$s, strona %2$d" #. 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 "Kanał wpisów dla grupy %s (Atom)" +msgstr "Kanał wpisów dla grupy %s (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5188,12 +5108,12 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%" "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. " -"([Przeczytaj więcej](%%%%doc.help%%%%))" +"([Dowiedz się 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 name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, fuzzy, php-format +#, 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 " @@ -5203,7 +5123,7 @@ msgstr "" "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +"krótkimi wiadomościami o swoim życiu i zainteresowaniach." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5226,9 +5146,8 @@ msgid "Message from %1$s on %2$s" msgstr "Wiadomość od użytkownika %1$s na %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "Komunikator nie jest dostępny." +msgstr "Niedostępne." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5236,75 +5155,74 @@ msgstr "Usunięto wpis." #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" +msgstr "Prywatny strumień twojej listy %1$s, strona %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" +msgstr "Strumień twojej listy %1$s, strona %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. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "%1$s nadał etykietę %2$s, strona %3$d" +msgstr "Strumień listy %1$s użytkownika %2$s, strona %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 "Prywnatny strumień twojej listy %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 "Strumień twojej listy %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +msgstr "Strumień listy %1$s użytkownika %2$s." #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Kanał dla ulubionych wpisów użytkownika %s (Atom)" +msgstr "Kanał dla listy %1$s użytkownika %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " -"wysłał." +"To jest strumień listy %1$s użytkownika %2$s, ale nikt jeszcze nic nie " +"opublikował." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." -msgstr "" +msgstr "Spróbuj przypisać znaczniki większej liczbie ludzi." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który go wyśle." +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zaczniesz " +"obserwować tego strumienia!" #. 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 "Licencja" +msgstr "Wymienione" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5319,9 +5237,8 @@ msgstr "(Brak)" #. 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 "Wyświetl więcej" +msgstr "Pokaż wszystko" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -5330,21 +5247,21 @@ msgstr "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 +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s nadał etykietę %2$s" +msgstr "Wpisy użytkownika %1$s oznaczone %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%1$s nadał etykietę %2$s, strona %3$d" +msgstr "Wpisy użytkownika %1$s oznaczone %2$s, strona %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. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" +msgstr "Wpisy użytkownika %1$s, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5354,9 +5271,9 @@ msgstr "Kanał wpisów dla %1$s ze znacznikiem %2$s (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 "Kanał wpisów dla %s (Atom)" +msgstr "Kanał wpisów dla %s (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5418,12 +5335,12 @@ msgstr "" "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" "(http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby " -"obserwować wpisy użytkownika **%s** i wiele więcej. ([Przeczytaj więcej](%%%%" -"doc.help%%%%))" +"obserwować wpisy użytkownika **%s** i wiele więcej. ([Dowiedz się więcej](%%%" +"%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. -#, fuzzy, php-format +#, 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 " @@ -5431,7 +5348,7 @@ msgid "" msgstr "" "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" -"(http://status.net/). " +"(http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5448,10 +5365,9 @@ msgid "User is already silenced." msgstr "Użytkownik jest już wyciszony." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" -msgstr "Witryny" +msgstr "Witryna" #. TRANS: Instructions for site administration panel. msgid "Basic settings for this StatusNet site" @@ -5488,54 +5404,47 @@ msgid "Dupe limit must be one or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jedną lub więcej sekund." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Ogólne" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Nazwa witryny" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Nazwa strony, taka jak \"Mikroblog firmy X\"" +msgstr "Nazwa strony, w stylu \"Mikroblog firmy X\"." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Dostarczane przez" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Tekst używany do odnośnika do zasług w stopce każdej strony" +msgstr "Tekst używany w łączu do podziękowań na stopce każdej strony." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Adres URL \"Dostarczane przez\"" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "Adres URL używany do odnośnika do zasług w stopce każdej strony" +msgstr "Adres URL używany do odnośnika do podziękowań na stopce każdej strony." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "E-mail" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Kontaktowy adres e-mail witryny" +msgstr "Kontaktowy adres e-mail witryny." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" -msgstr "Lokalne" +msgstr "Lokalizacja" #. TRANS: Dropdown label on site settings panel. msgid "Default timezone" @@ -5550,15 +5459,13 @@ msgid "Default language" msgstr "Domyślny język" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" -"Język witryny, kiedy automatyczne wykrywanie z ustawień przeglądarki nie " -"jest dostępne" +"Język witryny, kiedy nie jest dostępne automatyczne wykrywanie z ustawień " +"przeglądarki." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Ograniczenia" @@ -5594,9 +5501,8 @@ msgid "SSL logo" msgstr "Logo SSL" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Zapisz ustawienia witryny" +msgstr "Zapisz ustawienia witryny." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5624,9 +5530,8 @@ msgstr "" "Tekst wpisu witryny (maksymalnie 255 znaków, można używać znaczników HTML)" #. TRANS: Button title to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Zapisz wpis witryny" +msgstr "Zapisz wpis witryny." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5672,9 +5577,8 @@ msgid "SMS phone number" msgstr "Numer telefonu SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." -msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" +msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5721,9 +5625,8 @@ msgid "That is the wrong confirmation number." msgstr "To jest błędny numer potwierdzenia." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Nie można usunąć potwierdzenia komunikatora." +msgstr "Nie można usunąć potwierdzenia SMS." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5758,12 +5661,10 @@ msgstr "" "e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Nie podano kodu" +msgstr "Nie podano kodu." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Migawki" @@ -5785,7 +5686,6 @@ msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Migawki" @@ -5803,32 +5703,28 @@ msgid "Data snapshots" msgstr "Migawki danych" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" +msgstr "Kiedy wysyłać dane statystyczne na serwery status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Częstotliwość" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Migawki będą wysyłane co N trafień WWW" +msgstr "Migawki będą wysyłane co N trafień sieci." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Adres URL zgłaszania" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Migawki będą wysyłane na ten adres URL" +msgstr "Migawki będą wysyłane na ten adres URL." #. TRANS: Button title to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Zapisz ustawienia migawki" +msgstr "Zapisz ustawienia migawki." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5841,50 +5737,48 @@ msgstr "Nie można zapisać subskrypcji." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "Możesz zatwierdzić tylko zatwierdzić własne oczekujące subskrypcje." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "%s członków grupy" +msgstr "Subskrypcja %s oczekuje na zatwierdzenie" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "Członkowie grupy %1$s, strona %2$d" +msgstr "Subskrybenci użytkownika %1$s oczekujący na zatwierdzenie, strona %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Lista użytkowników znajdujących się w tej grupie." +msgstr "" +"Lista użytkowników oczekujących na zatwierdzenie subskrypcji twoich wpisów." #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subskrybowano" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "Musisz być zalogowany, aby utworzyć grupę." +msgstr "Musisz być zalogowany, wypisać się z subskrypcji listy." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "Brak parametru identyfikatora." +msgstr "Brak identyfikatora." #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." +msgstr "Nie udało się subskrybować użytkownika %1$s do listy %2$s: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "Subskrybenci użytkownika %1$s, strona %2$d" +msgstr "Użytkownik %1$s subskrybowany do listy %2$s użytkownika %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -5957,19 +5851,17 @@ 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. -#, fuzzy, php-format +#, 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%%)." msgstr "" -"Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj subskrybować " +"Nie obserwujesz teraz wpisów innych użytkowników, spróbuj subskrybować " "osoby, które znasz. Spróbuj [wyszukać kogoś](%%action.peoplesearch%%), " -"poszukać członków grup, które cię interesują, a także [znanych użytkowników]" -"(%%action.featured%%). Jeśli jesteś [użytkownikiem serwisu Twitter](%%action." -"twittersettings%%), można automatycznie subskrybować osoby, które tam już " -"obserwujesz." +"poszukać osób należących do grup, które cię interesują, a także [znanych " +"użytkowników](%%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. @@ -5985,7 +5877,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Kanał subskrypcji dla %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "Komunikator" @@ -6002,9 +5893,9 @@ msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "Kanał wpisów dla znacznika %s (Atom)" +msgstr "Kanał wpisów dla znacznika %s (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6027,68 +5918,58 @@ msgstr "Kanał wpisów dla znacznika %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "Nie można wysłać wiadomości do tego użytkownika." +msgstr "Nie można oznaczyć tego użytkownika." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "Profil użytkownika" +msgstr "Profil listowy" #. 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 "Ograniczenia" +msgstr "Lista %s" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "Błąd AJAX" +msgstr "Błąd" #. TRANS: Header in list form. msgid "User profile" msgstr "Profil użytkownika" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "Ograniczenia" +msgstr "Użytkownik listowy" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Ograniczenia" +msgstr "Listy" #. TRANS: Field title on list form. -#, fuzzy msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " -"spacjami" +"Listy dla tego użytkownika (litery, liczby, -, . i _), oddzielone " +"przecinkami lub spacjami." #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Znaczniki" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "Zapisano hasło." +msgstr "Zapisano listy." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." -msgstr "" -"Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +msgstr "Użyj tego formularza, aby dodać subskrybentów lub subskrypcje do list." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6112,14 +5993,13 @@ msgstr "Zrezygnowano z subskrypcji" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "Subskrybenci użytkownika %1$s, strona %2$d" +msgstr "%1$s wypisany z subskrypcji listy %2$s użytkownika %3$s" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "Ustawienia komunikatora" +msgstr "Ustawienia URL" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6132,13 +6012,12 @@ msgid " (free service)" msgstr " (wolna usługa)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "Brak" +msgstr "[brak]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[wewnętrzne]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" @@ -6150,38 +6029,42 @@ msgstr "Używana automatyczna usługa skracania." #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "Adres URL dłuższy niż" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +"Adresy URL dłuższe niż ta wartość zostaną skrócone, 0 oznacza pełne " +"usunięcie." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "Tekst dłuższy niż" #. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"Adresy URL we wpisach dłuższe niż ta wartość zostaną skrócone, 0 oznacza " +"pełne usnięcie." #. TRANS: Form validation error for form "Other settings" in user profile. msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." -msgstr "Nieprawidłowa treść wpisu." +msgstr "Nieprawidłowa liczba dla maksymalnej długości adresu URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Nieprawidłowa treść wpisu." +msgstr "Nieprawidłowa liczba dla maksymalnej długości wpisu." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" +"Wystąpił błąd podczas zapisywania preferencji użytkownika skracania adresu " +"URL." #. TRANS: User admin panel title. msgctxt "TITLE" @@ -6202,12 +6085,11 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6253,9 +6135,8 @@ msgid "Whether to allow users to invite new users." msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." #. TRANS: Button title to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." -msgstr "Zapisz ustawienia użytkownika" +msgstr "Zapisz ustawienia użytkownika." #. 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. @@ -6295,12 +6176,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 "" -"Ta witryna korzysta z oprogramowania %1$s w wersji %2$s, Copyright 2008-2010 " +"Ta witryna korzysta z oprogramowania %1$s w wersji %2$s, Copyright 2008-2011 " "StatusNet, Inc. i współtwórcy." #. TRANS: Header for StatusNet contributors section on the version page. @@ -6312,20 +6193,19 @@ 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." msgstr "" -"Program StatusNet jest wolnym oprogramowaniem; można go rozprowadzać dalej i/" +"Program StatusNet jest wolnym oprogramowaniem: można go rozprowadzać dalej i/" "lub modyfikować na warunkach Powszechnej Licencji Publicznej Affero GNU, " "wydanej przez Fundację Wolnego Oprogramowania (Free Software Foundation) - " -"według wersji trzeciej tej Licencji lub którejś z późniejszych wersji. " +"według wersji trzeciej tej Licencji lub (jeśli tak zdecydujesz) 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 " @@ -6336,7 +6216,7 @@ msgstr "" "jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI " "HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania " "bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną " -"Affero GNU. " +"Affero GNU." #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6354,25 +6234,21 @@ msgid "Plugins" msgstr "Wtyczki" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Nazwa" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Wersja" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" -msgstr "Autorzy" +msgstr "Autor(‐rzy)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Opis" @@ -6402,16 +6278,15 @@ msgstr "Robin sądzi, że coś jest niemożliwe." #, php-format msgid "%1$d byte" msgid_plural "%1$d bytes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%1$d bajt" +msgstr[1] "%1$d bajty" +msgstr[2] "%1$d bajtów" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have #. TRANS: gettext support multiple plurals in the same message, unfortunately... -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$s. Try to " "upload a smaller version." @@ -6419,14 +6294,14 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to " "upload a smaller version." msgstr[0] "" -"Żaden plik nie może być większy niż %1$d bajt, a wysłany plik miał %2$d " -"bajty. Proszę spróbować wysłać mniejszą wersję." +"Żaden plik nie może być większy niż %1$d bajt, a wysłany plik miał %2$s. " +"Proszę spróbować wysłać krótszą wersję." msgstr[1] "" -"Żaden plik nie może być większy niż %1$d bajty, a wysłany plik miał %2$d " -"bajty. Proszę spróbować wysłać mniejszą wersję." +"Żaden plik nie może być większy niż %1$d bajty, a wysłany plik miał %2$s. " +"Proszę spróbować wysłać krótszą wersję." msgstr[2] "" -"Żaden plik nie może być większy niż %1$d bajtów, a wysłany plik miał %2$d " -"bajtów. Proszę spróbować wysłać mniejszą wersję." +"Żaden plik nie może być większy niż %1$d bajtów, a wysłany plik miał %2$s. " +"Proszę spróbować wysłać krótszą wersję." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6504,9 +6379,9 @@ msgid "Could not create login token for %s" msgstr "Nie można utworzyć tokenów loginów dla %s" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Nie można zapisać nowego hasła." +msgstr "Nie można utworzyć obiektu klasy %s." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6531,9 +6406,9 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "Brak profilu (%1$d) dla wpisu (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" +msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s." #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -6563,23 +6438,20 @@ msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Nie można powtórzyć własnego wpisu." +msgstr "Nie można powtórzyć, oryginalny wpis nie istnieje lub został usunięty." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." msgstr "Nie można powtórzyć własnego wpisu." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Nie można powtórzyć własnego wpisu." +msgstr "Nie można powtórzyć prywatnego wpisu." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Nie można powtórzyć własnego wpisu." +msgstr "Nie można powtórzyć wpisu, którego nie możesz odczytać." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6587,9 +6459,9 @@ msgstr "Już powtórzono ten wpis." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Użytkownik nie posiada ostatniego wpisu." +msgstr "Użytkownik %1$s nie ma dostępu do wpisu %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6632,32 +6504,27 @@ msgstr "" #. TRANS: Server exception. msgid "The tag you are trying to rename to already exists." -msgstr "" +msgstr "Znacznik, któremu użytkownik próbuje zmienić nazwę już istnieje." #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "Nie podano grupy." +msgstr "Nie podano twórcy znacznika." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "Nie podano grupy." +msgstr "Nie podano znacznika." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "Nie można zapisać profilu." +msgstr "Nie można utworzyć znacznika profilu." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "Nie można zapisać profilu." +msgstr "Nie można ustawić tagu URI profilu." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "Nie można zapisać profilu." +msgstr "Nie można ustawić tagu strony głównej profilu." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6665,6 +6532,9 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Zostało już przez ciebie utworzone %d lub więcej znaczników, co jest " +"maksymalną dozwoloną liczba znaczników. Spróbuj użyć lub usunąć niektóre " +"istniejące znaczniki." #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format @@ -6672,16 +6542,16 @@ msgid "" "You already have %1$d or more people in list %2$s, which is the maximum " "allowed number. Try unlisting others first." msgstr "" +"Masz już %1$d lub więcej osób na liście %2$s, co jest maksymalną dozwoloną " +"liczbą. Spróbuj najpierw usunąć kogoś z listy." #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "Nie można usunąć subskrypcji." +msgstr "Nie udało się dodać subskrypcji listy." #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "Nie można usunąć subskrypcji." +msgstr "Nie udało się usunąć subskrypcji listy." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -6716,7 +6586,6 @@ msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Obserwuj" @@ -6735,7 +6604,7 @@ msgstr "Witaj w %1$s, @%2$s." #. TRANS: Exception thrown when trying view "repeated to me". msgid "Not implemented since inbox change." -msgstr "" +msgstr "Nie realizowane od zmiany skrzynki odbiorczej." #. TRANS: Server exception. msgid "No single user defined for single-user mode." @@ -6802,23 +6671,19 @@ msgid "User deletion in progress..." msgstr "Trwa usuwanie użytkownika..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Zmodyfikuj ustawienia profilu" +msgstr "Edytuj ustawienia profilu." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Edycja" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" +msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Wiadomość" @@ -6856,7 +6721,6 @@ msgid "Show more" msgstr "Wyświetl więcej" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Odpowiedz" @@ -6864,13 +6728,12 @@ msgstr "Odpowiedz" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "Napisz odpowiedź..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" -msgstr "StatusNet" +msgstr "Status" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. @@ -6978,7 +6841,7 @@ msgstr "Użytkownik jest już członkiem tej grupy." #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. #, php-format msgid "Already know about notice %1$s and it has a different author %2$s." -msgstr "" +msgstr "Już wiem o wpisie %1$s i ma on innego autora %2$s ." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. msgid "Not overwriting author info for non-trusted user." @@ -6992,9 +6855,9 @@ msgid "No content for notice %s." msgstr "Brak zawartości dla wpisu %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Brak użytkownika %s." +msgstr "Brak użytkownika \"%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. @@ -7036,13 +6899,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Strona domowa" +msgstr "Strona główna" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Administrator" @@ -7061,7 +6922,6 @@ msgid "User configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Użytkownik" @@ -7071,7 +6931,6 @@ msgid "Access configuration" msgstr "Konfiguracja dostępu" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Dostęp" @@ -7081,7 +6940,6 @@ msgid "Paths configuration" msgstr "Konfiguracja ścieżek" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Ścieżki" @@ -7091,7 +6949,6 @@ msgid "Sessions configuration" msgstr "Konfiguracja sesji" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sesje" @@ -7101,7 +6958,6 @@ msgid "Edit site notice" msgstr "Zmodyfikuj wpis witryny" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Wpis witryny" @@ -7111,7 +6967,6 @@ msgid "Snapshots configuration" msgstr "Konfiguracja migawek" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Migawki" @@ -7121,18 +6976,15 @@ msgid "Set site license" msgstr "Ustaw licencję witryny" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licencja" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Plugins configuration" -msgstr "Konfiguracja ścieżek" +msgstr "Konfiguracja wtyczek" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Wtyczki" @@ -7149,7 +7001,7 @@ msgstr "Brak aplikacji dla tego klucza klienta." #. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." -msgstr "" +msgstr "Niedozwolone użycie interfejsu API." #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." @@ -7246,19 +7098,16 @@ msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Połączone aplikacje" +msgstr "Anulowanie zmian aplikacji." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Nowa aplikacja" +msgstr "Zapis zmian aplikacji." #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Nieznane działanie" +msgstr "Nieznana aplikacja" #. 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. @@ -7291,14 +7140,12 @@ msgstr "Unieważnij" #. TRANS: Submit button text to accept a group membership request on approve group form. #. TRANS: Submit button text to accept a subscription request on approve sub form. -#, fuzzy msgctxt "BUTTON" msgid "Accept" -msgstr "Zaakceptuj" +msgstr "Akceptuj" #. TRANS: Submit button text to reject a group membership request on approve group form. #. TRANS: Submit button text to reject a subscription request on approve sub form. -#, fuzzy msgctxt "BUTTON" msgid "Reject" msgstr "Odrzuć" @@ -7312,15 +7159,15 @@ msgid "Do not use this method!" msgstr "Nie należy używać tej metody." #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +msgstr "Strumień dla ludzi z listy %1$s użytkownika %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "Aktualizacje z %1$s na %2$s." +msgstr "Aktualizacje listy %2$s użytkownika %1$s na %3$s." #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7349,13 +7196,12 @@ msgstr "Zablokuj tego użytkownika" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Anuluj żądanie przyłączenia się" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Wszystkie subskrypcje" +msgstr "Anuluj żądanie subskrypcji" #. TRANS: Title for command results. msgid "Command results" @@ -7424,9 +7270,8 @@ msgstr "" "Wpisy: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: Already favorited." -msgstr "Nie można utworzyć ulubionego wpisu." +msgstr "Nie można utworzyć ulubionego wpisu: już w ulubionych." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." @@ -7448,22 +7293,22 @@ msgstr "Użytkownik %1$s opuścił grupę %2$s." #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "Błąd oznaczania %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s - %2$s" -msgstr[1] "%1$s - %2$s" -msgstr[2] "%1$s - %2$s" +msgstr[0] "%1$s otrzymał znacznik %2$s" +msgstr[1] "%1$s otrzymał znaczniki %2$s" +msgstr[2] "%1$s otrzymał znaczniki %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. @@ -7475,7 +7320,7 @@ msgstr "Nieprawidłowy znacznik: \"%s\"" #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "Błąd usunięcia znaczników %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7483,9 +7328,9 @@ msgstr "" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Następujący znacznik został usunięty z użytkownika %1$s: %2$s ." +msgstr[1] "Następujące znaczniki zostały usunięte z użytkownika %1$s: %2$s." +msgstr[2] "Następujące znaczniki zostały usunięte z użytkownika %1$s: %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -7677,163 +7522,150 @@ msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Wyniki polecenia" +msgstr "Polecenia:" #. TRANS: Help message for IM/SMS command "on". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Nie można włączyć powiadomień." +msgstr "włącz powiadomienia" #. TRANS: Help message for IM/SMS command "off". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Nie można wyłączyć powiadomień." +msgstr "wyłącz powiadomienia" #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "pokaż tę pomoc" #. TRANS: Help message for IM/SMS command "follow ". -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Subskrybuj tego użytkownika" +msgstr "subskrybuj tego użytkownika" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "wyświetla listę grup, do których przynależysz" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "Znacznik użytkownika" +msgstr "oznacz użytkownika" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "Znacznik użytkownika" +msgstr "odłącz znacznik użytkownika" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "wyświetl ludzi, których śledzisz" #. TRANS: Help message for IM/SMS command "subscribers". msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "wyświetl osoby, które cię śledzą" #. TRANS: Help message for IM/SMS command "leave ". -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "Zrezygnuj z subskrypcji tego użytkownika" +msgstr "zrezygnuj z subskrypcji tego użytkownika" #. TRANS: Help message for IM/SMS command "d ". -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Bezpośrednia wiadomość do użytkownika %s" +msgstr "bezpośrednia wiadomość do użytkownika" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "pokaż ostatni wpis użytkownika" #. TRANS: Help message for IM/SMS command "whois ". -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Zdalny profil nie jest grupą." +msgstr "pokaż informacje z profilu użytkownika" #. TRANS: Help message for IM/SMS command "lose ". msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "wymuś wstrzymanie śledzenia mnie przez użytkownika" #. TRANS: Help message for IM/SMS command "fav ". msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" -msgstr "" +msgstr "dodaj ostatni wpis użytkownika do 'ulubionych'" #. TRANS: Help message for IM/SMS command "fav #". msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" -msgstr "" +msgstr "dodaj wpis o wskazanym identyfikatorze do 'ulubionych'" #. TRANS: Help message for IM/SMS command "repeat #". msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "powtórz wpis o podanym identyfikatorze" #. TRANS: Help message for IM/SMS command "repeat ". -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Powtórz ten wpis" +msgstr "powtórz ostatni wpis użytkownika" #. TRANS: Help message for IM/SMS command "reply #". msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "odpowiedz na wpis o podanym identyfikatorze" #. TRANS: Help message for IM/SMS command "reply ". -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Odpowiedz na ten wpis" +msgstr "odpowiedz na ostatni wpis użytkownika" #. TRANS: Help message for IM/SMS command "join ". -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Nieznana grupa." +msgstr "dołącz do grupy" #. TRANS: Help message for IM/SMS command "login". msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" -msgstr "" +msgstr "Pobierz łącze do logowania do interfejsu sieciowego" #. TRANS: Help message for IM/SMS command "drop ". -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Usuń grupę" +msgstr "opuść grupę" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "" +msgstr "wyświetl własne statystyki" #. TRANS: Help message for IM/SMS command "stop". #. TRANS: Help message for IM/SMS command "quit". msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "to samo co 'wyłączone'" #. TRANS: Help message for IM/SMS command "sub ". msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "to samo co 'śledź'" #. TRANS: Help message for IM/SMS command "unsub ". msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "to samo co 'opuść'" #. TRANS: Help message for IM/SMS command "last ". msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "to samo co 'pobierz'" #. TRANS: Help message for IM/SMS command "on ". #. TRANS: Help message for IM/SMS command "off ". @@ -7844,15 +7676,14 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all". #. TRANS: Help message for IM/SMS command "tracks". #. TRANS: Help message for IM/SMS command "tracking". -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Nie zaimplementowano polecenia." +msgstr "jeszcze nie zaimplementowano." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "przypomnij użytkownikowi o aktualizacji." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "No configuration file found." @@ -7883,17 +7714,15 @@ msgstr "Błąd bazy danych" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Publiczny" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Ograniczenia" +msgstr "Listy" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7914,30 +7743,26 @@ msgid "Disfavor this notice" msgstr "Usuń ten wpis z ulubionych" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Usuń wpis z ulubionych" #. TRANS: Button title for removing the favourite status for a favourite notice. -#, fuzzy msgid "Remove this notice from your list of favorite notices." -msgstr "Nie można odebrać ulubionych wpisów." +msgstr "Usuń ten wpis z listy ulubionych wpisów." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Dodaj ten wpis do ulubionych" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" msgstr "Dodaj do ulubionych" #. TRANS: Button title for adding the favourite status to a notice. -#, fuzzy msgid "Add this notice to your list of favorite notices." -msgstr "Nie można odebrać ulubionych wpisów." +msgstr "Dodaj ten wpis do listy ulubionych wpisów." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7957,7 +7782,7 @@ msgstr "FOAF" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "Strumienie aktywności" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." @@ -7965,7 +7790,6 @@ msgstr "Brak autora w kanale." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. -#, fuzzy msgid "Cannot import without a user." msgstr "Nie można zaimportować bez użytkownika." @@ -7974,19 +7798,17 @@ msgid "Feeds" msgstr "Kanały" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" -msgstr "Wszystko" +msgstr "Wszystkie" #. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Znacznik" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Wybierz znacznik do ograniczonej listy" +msgstr "Wybierz znacznik do zawężenia listy." #. TRANS: Description on form for granting a role. #, php-format @@ -8003,7 +7825,7 @@ msgstr "Wszyscy członkowie" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). msgid "Pending" -msgstr "" +msgstr "Oczekujący" #. TRANS: Header for mini list of users that are blocked in a group page (h2). msgid "Blocked" @@ -8022,7 +7844,7 @@ msgstr "Zablokuj" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Block this user so that they can no longer post messages to it." -msgstr "" +msgstr "Zablokuj tego użytkownika aby nie mógł wysyłać tam wiadomości." #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8075,6 +7897,8 @@ msgstr[2] "" msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"Nowi członkowie muszą być zatwierdzeni przez administratora a wszystkie " +"wpisy mają wymuszoną prywatność." #. TRANS: Indicator in group members list that this user is a group administrator. msgctxt "GROUPADMIN" @@ -8119,12 +7943,12 @@ msgstr "Zobacz wszystko" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." -msgstr "" +msgstr "Zobacz wszystkie grupy, do której należysz." #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. msgid "Back to top" -msgstr "" +msgstr "Powrót na górę" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8201,7 +8025,7 @@ msgstr "Nieznane źródło skrzynki odbiorczej %d." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." -msgstr "" +msgstr "Kolejkowanie musi być włączone by używać wtyczek komunikatorów." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." @@ -8213,15 +8037,13 @@ msgid "Trends" msgstr "Trendy" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Zaproś nowych użytkowników" +msgstr "Zaproś kolejnych znajomych" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Zaproś nowych użytkowników" +msgstr "Zaproś współpracowników" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8246,9 +8068,8 @@ msgid "Send" msgstr "Wyślij" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Zaproszenia" +msgstr "Wyślij zaproszenia." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8261,9 +8082,8 @@ msgid "Leave" msgstr "Opuść" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Zarejestrowane aplikacje" +msgstr "Zobacz wszystkie utworzone przez ciebie listy." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8324,15 +8144,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 "Użytkownik %1$s obserwuje teraz %2$s." +msgstr "Użytkownik %1$s obserwuje cię teraz na %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." +msgstr "Użytkownik %1$s chciałby oglądać twoje wpisy na %2$s." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. @@ -8612,23 +8432,23 @@ 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 +#, 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." +msgstr "Użytkownik %1$s dołączył do grupy %2$s na %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. #. 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 "Użytkownik %1$s dołączył do grupy %2$s." +msgstr "Użytkownik %1$s dołączył do grupy %2$s na %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "Użytkownik %1$s dołączył do grupy %2$s." +msgstr "Użytkownik %1$s chce dołączyć do grupy %2$s na %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8638,6 +8458,8 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"Użytkownik %1$s życzy sobie dołączyć do twojej grupy %2$s na %3$s. Możesz " +"zgodzić się lub odrzucić jego członkostwo przechodząc na %4$s" #. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." @@ -8658,20 +8480,17 @@ msgid "Inbox" msgstr "Skrzynka odbiorcza" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "Wiadomości przychodzące" +msgstr "Wiadomości przychodzące." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" -msgstr "Wysłane" +msgstr "Wiadomości wysłane" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "Wysłane wiadomości" +msgstr "Wysłane przez ciebie wiadomości." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -8691,9 +8510,9 @@ msgstr "Przychodzący e-mail nie jest dozwolony." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." -msgstr "Nieobsługiwany typ wiadomości: %s" +msgstr "Nieobsługiwany typ wiadomości: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8705,10 +8524,9 @@ msgid "Make Admin" msgstr "Uczyń administratorem" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "Nadaje temu użytkownikowi uprawnienia administratora" +msgstr "Nadaj temu użytkownikowi uprawnienia administratora." #. 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." @@ -8769,9 +8587,8 @@ msgid "Send" msgstr "Wyślij" #. TRANS: Header in message list. -#, fuzzy msgid "Messages" -msgstr "Wiadomość" +msgstr "Wiadomości" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. @@ -8779,26 +8596,24 @@ msgid "from" msgstr "z" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" -msgstr "WWW" +msgstr "sieć" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "xmpp" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "E-mail" +msgstr "e‐mail" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "OMB" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" @@ -8879,7 +8694,7 @@ msgstr "" #. TRANS: Separator in profile addressees list. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -8919,68 +8734,57 @@ msgid "Repeated by" msgstr "Powtórzone przez" msgid " " -msgstr "" +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Odpowiedz na ten wpis" +msgstr "Odpowiedz na ten wpis." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Odpowiedz" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Usuń ten wpis" +msgstr "Usuń ten wpis ze strumienia." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Powtórzono wpis" +msgstr "Powtórzony wpis." #. TRANS: Field label for notice text. msgid "Update your status..." -msgstr "" +msgstr "Aktualizuj stan..." #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Szturchnij tego użytkownika" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" msgstr "Szturchnij" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." -msgstr "Wyślij szturchnięcie do tego użytkownika" +msgstr "Wyślij szturchnięcie do tego użytkownika." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. -#, fuzzy msgid "No oEmbed API endpoint available." -msgstr "Komunikator nie jest dostępny." +msgstr "Nie jest dostępny punkt końcowy API oEmbed." #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "Odnośniki" +msgstr "Lista" #. TRANS: Field title for list. -#, fuzzy msgid "Change the list (letters, numbers, -, ., and _ are allowed)." -msgstr "" -"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " -"przecinkami lub spacjami" +msgstr "Zmiana listy (dostępne litery, liczby, -, . i _)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Opisz grupę lub temat" +msgstr "Opisz grupę lub temat." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. @@ -8992,16 +8796,14 @@ msgstr[1] "Opisz grupę lub temat w %d znakach lub mniej." msgstr[2] "Opisz grupę lub temat w %d znakach lub mniej." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Usuń tego użytkownika" +msgstr "Usuń tą listę." #. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Wyszukaj" @@ -9014,9 +8816,9 @@ msgstr "Odnośniki" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s - %2$s" +msgstr "Lista %1$s użytkownika %2$s." #. TRANS: Menu item in list navigation panel. #, fuzzy @@ -9026,28 +8828,26 @@ msgstr "Licencja" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Subskrybenci" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Subskrybowano użytkownika %s." +msgstr "Subskrybenci listy %1$s użytkownika %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Edycja" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Zmodyfikuj grupę %s" +msgstr "Zmodyfikuj własną listę %s." #. TRANS: Title for link to edit list settings. #, fuzzy @@ -9079,37 +8879,36 @@ msgstr "Subskrybowano użytkownika %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Aktualizacje z \"%s\"" +msgstr "Listy z \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Aktualizacje z \"%s\"" +msgstr "Listy z %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Listy użytkownika %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s - %2$s" +msgstr "Listy użytkownika %s." #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "Popularne wpisy" +msgstr "Twoje listy" #. TRANS: Fieldset legend in lists widget. #, fuzzy @@ -9135,25 +8934,23 @@ msgid "Listed: %1$d Subscribers: %2$d" msgstr "Subskrybenci użytkownika %1$s, strona %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "Nie odnaleziono strony." +msgstr "Listy z tobą" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Aktualizacje z \"%s\"" +msgstr "Listy z %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Subskrypcje użytkownika %s" +msgstr "Subskrypcje listy" #. 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" @@ -9163,28 +8960,24 @@ msgid "Your profile" msgstr "Profil grupy" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Odpowiedzi" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Ulubione" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Użytkownik" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Wiadomość" +msgstr "Wiadomości" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -9197,24 +8990,23 @@ msgstr "Nieznane" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Wyłącz" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Włącz" #. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" msgid "" "(The plugin description is unavailable when a plugin has been disabled.)" -msgstr "" +msgstr "(Opis wtyczki jest niedostępny kiedy wtyczka jest wyłączona.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Ustawienia SMS" +msgstr "Ustawienia" #. TRANS: Menu item title in primary navigation panel. #, fuzzy @@ -9603,9 +9395,9 @@ msgstr "" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Grupy %s są członkiem" +msgstr "Grupy, do których %s przynależy" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. @@ -9636,9 +9428,8 @@ msgid "Subscribe" msgstr "Subskrybuj" #. TRANS: Button title to subscribe to a user. -#, fuzzy msgid "Subscribe to this user." -msgstr "Subskrybuj tego użytkownika" +msgstr "Subskrybuj tego użytkownika." #. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index d761f2a315..db8389740b 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,18 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index bd1d0b6173..2e623b9369 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,19 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -104,9 +103,8 @@ msgid "Closed" msgstr "Fechado" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Salvar as configurações de acesso" +msgstr "Salvar as configurações de acesso." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -253,9 +251,9 @@ msgstr "Mensagens 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 "Fonte de mensagens dos amigos de %s (Atom)" +msgstr "Fonte de mensagens dos amigos de %s (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -319,10 +317,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 "Convites" +msgstr "Enviar convite" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -446,17 +443,15 @@ msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Conversa" +msgstr "Nenhuma ID de conversação." #. 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 "Conversa" +msgstr "Nenhuma conversa com a ID %d ." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Conversa" @@ -6344,7 +6339,6 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -8614,7 +8608,7 @@ msgstr "Enviar uma mensagem direta" #. TRANS: This is the default entry in the drop-down box, doubling as instructions #. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" -msgstr "Selecione uma operadora:" +msgstr "Selecione o destinatário:" #. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index cc296edc43..b238e56d26 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,19 +19,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6316,7 +6315,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6565,7 +6563,6 @@ msgstr "" "тегов. Попробуйте воспользоваться уже существующим тегом или удалите " "некоторые старые теги." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -7198,7 +7195,7 @@ msgstr "Обновление списка %2$s пользователя %1$s н #. TRANS: Title. msgid "Notices where this attachment appears" -msgstr "Сообщает, где появляется это вложение" +msgstr "Записи с этим вложением" #. TRANS: Title. msgid "Tags for this attachment" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 2ab0430783..e59628c69a 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,18 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6262,7 +6261,6 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6505,7 +6503,6 @@ msgstr "" "Du har redan skapat %d eller fler taggar som är det maximalt tillåtna " "antalet taggar. Försök använda eller stryka några befintliga taggar." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 23880d7856..d67f662314 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,18 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:40+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index 7b0f7126dd..0bb04cdb0d 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 10:15:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -6473,7 +6472,6 @@ msgid_plural "%1$d bytes" msgstr[0] "" msgstr[1] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6729,7 +6727,6 @@ msgstr "" "pinahihintulutang bilang ng mga tatak. Subukang gamitin o burahin ang ilan " "sa umiiral na mga tatak.}}" -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 38b2a19950..057377155c 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -3,6 +3,7 @@ # # Author: AS # Author: Boogie +# Author: Dim Grits # Author: Prima klasy4na # Author: Тест # -- @@ -12,19 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6336,7 +6336,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6582,7 +6581,6 @@ msgstr "" "теґів. Спробуйте скористатися вже існуючим теґом або видаліть деякі старі " "теґи." -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" @@ -8689,7 +8687,7 @@ msgstr "Ви повинні виконати або adaptNoticeListItem(), аб #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Більше ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 326262f15a..ae0bc265be 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -19,19 +19,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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-12-03 10:15:09+0000\n" +"X-POT-Import-Date: 2012-02-25 15:22:46+0000\n" #. TRANS: Database error message. #, php-format @@ -6103,7 +6102,6 @@ msgid "%1$d byte" msgid_plural "%1$d bytes" msgstr[0] "" -# #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d (used for plural) is the byte limit for uploads, #. TRANS: %2$s is the proper form of "n bytes". This is the only ways to have @@ -6331,7 +6329,6 @@ msgstr "" "你已经创建了 %d 条或更多的标签,达到了标签数量的上限。试下删掉一些已经创建的" "标签。" -# #. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, fuzzy, php-format msgid "" diff --git a/plugins/APC/locale/ast/LC_MESSAGES/APC.po b/plugins/APC/locale/ast/LC_MESSAGES/APC.po index dc01740497..2d8af06103 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index e07bb60c30..54d5ab1508 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index 9b6a615459..a05d56236c 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index 91236152f3..eb323fff44 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index f0f967ac7e..f70e1a03b3 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index bf96d0cab9..3c54e7a3cd 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 9c34385c86..f99930c19c 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 0666987de1..31bb841cc6 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 0549baabd1..4bc1bb6758 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index c9719f7f5c..737fed0c86 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index 9f9023205f..3704ad65da 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po index 7c7e2fd420..888462e230 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 2a5120f281..9f38b93fc4 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:06:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index a22c95d669..1ef533cc32 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 48493f6ada..bcab5b0012 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:38+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 2bb3c52319..227e1a08c1 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index fbceb1738e..147f09c46c 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:38+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index e6587fef75..75ed3883d3 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 258b719ef8..6c1be537d2 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 2ae65cd5b2..dd26132808 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index aa11f84f84..5e1d25f9fa 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index b1b60da170..3c840d750c 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:29+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 1655955e15..cf495a8e59 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:29+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index d01eb8e0ad..a7108bebe0 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 37a1a9d00d..d6effa2657 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po index 2d76c495a5..6dfa2a5fb8 100644 --- a/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/es/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po index a0e07f6ea2..a1c2a00455 100644 --- a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:30+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index f63dd03b1e..ef67faa306 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:30+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index dcd998e2fd..d7191b6482 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po index b45ea4f934..7ab15771e6 100644 --- a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index e74a7b4f15..27c49a5e59 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 44fd9be669..a344b3da55 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po index 860022797c..133ed6666b 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index 5325ad60bb..c08fdf1a7e 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index 43d744924b..45feb7813c 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:31+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index 5be07d0824..0cda4a68b5 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/pl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pl/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..7e3fc2361c --- /dev/null +++ b/plugins/AccountManager/locale/pl/LC_MESSAGES/AccountManager.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - AccountManager to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:31+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 Account Manager plugin implements the Account Manager specification." +msgstr "Wtyczka menedżer kont implementuje specyfikację menedżera kont." diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index 8da244c330..6721698cc2 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index 1f936f9379..0c924d6302 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 61b5fdc8ca..af9d8ffe18 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index df3b6313d2..d905a30e97 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po index cd10ba5bc0..85a92eb556 100644 --- a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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 == " diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index 68946047bd..bc1f5658c3 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index 681bfa938c..ebdddb4625 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/es/LC_MESSAGES/Activity.po b/plugins/Activity/locale/es/LC_MESSAGES/Activity.po index 0ae9da68a4..1bad5125c8 100644 --- a/plugins/Activity/locale/es/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/es/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po index ea7de3e042..9341320c40 100644 --- a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/fr/LC_MESSAGES/Activity.po b/plugins/Activity/locale/fr/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..0948d6949d --- /dev/null +++ b/plugins/Activity/locale/fr/LC_MESSAGES/Activity.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - Activity to French (Français) +# Exported from translatewiki.net +# +# Author: Jean-Frédéric +# Author: Od1n +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:32+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 a rejoint le groupe %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 suit désormais %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) suit désormais %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 a cessé de suivre %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) a arrêté de suivre %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 a aimé %4$s's update." + +#. 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) a aimé le statut de %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 "" + +#. 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 "" + +#. 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) a rejoint le groupe %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 a quitté le groupe %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) a quitté le groupe %3$s (%4$s)." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "" diff --git a/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po index 16ce3f9c87..b5c514993d 100644 --- a/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/gl/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index c56bfc2234..bc9dc203a7 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po b/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po index 38604305c7..2e480bd232 100644 --- a/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/lt/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:32+0000\n" "Language-Team: Lithuanian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index 5c74a071bd..be20df6e95 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index f21bf4aad2..c19b91f497 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Activity/locale/pl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/pl/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..21d43a698a --- /dev/null +++ b/plugins/Activity/locale/pl/LC_MESSAGES/Activity.po @@ -0,0 +1,117 @@ +# Translation of StatusNet - Activity to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:32+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: 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 dołączył do grupy %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 zaczął obserwować %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) zaczął obserwować %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 zakończył obserwację %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) zakończył obserwację %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 polubił aktualizację użytkownika %" +"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) polubił status (%4$s) użytkownika %3$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 przestał lubić aktualizację " +"użytkownika %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) przestał lubić status (%4$s) użytkownika %3$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) dołączył do grupy %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 opuścił grupę %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) opuścił grupę %3$s (%4$s)." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "Wysyła ogłoszenia, gdy się dzieją się zdarzenia towarzyskie." diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index 4f66a65457..0fbe5c66c6 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:15:05+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-activity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index 799d9e0cc4..f2c489a48c 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:32+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 974a7de8f5..0c84aec36f 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index d9b6b7e035..051ce2be2e 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 1db4be7ff3..10a8c3decb 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index b569702274..10cd94e683 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Adsense to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Erchache2000 # Author: Translationista # -- @@ -10,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -82,18 +82,16 @@ msgid "Leaderboard" msgstr "Clasificación" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Leaderboard slot code." -msgstr "Código de espacio de clasificación" +msgstr "Código colocado en el panel de comandos" #. TRANS: Field label in AdSense administration panel. msgid "Skyscraper" msgstr "Banderola rascacielos" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Wide skyscraper slot code." -msgstr "Código de espacio de banderola rascacielos ancha" +msgstr "Código colocado en rectángulo (''banner'') vertical ancho" #. TRANS: Button text to save settings in AdSense administration panel. msgctxt "BUTTON" diff --git a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po index a0b03b4c2c..52d8f8b23e 100644 --- a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 02a1b27818..06dcce8131 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index ad8c5aaa55..6cf897357d 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index aabb3752c5..4f0c3362c6 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 0dab3c9f05..bb3a18afc5 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 389ed49443..7fb8f2e30f 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po index 55d84fcb7f..5aafb98d4d 100644 --- a/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/lt/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:33+0000\n" "Language-Team: Lithuanian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index e06a63a40a..5326e64731 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po index 52339b44c9..ca17982877 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:33+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index e89fe4628a..cee5a52554 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:33+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 1080213945..87dc405911 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 19e6120205..b236acfe0b 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 264c91c463..5ca2dcd4e4 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 1d43092425..f9001c7645 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 5ac8945287..f7d96d508f 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index bb20c17761..fbc5182416 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 0815d73f23..02f2b8f098 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 9776566a4e..84cc94e581 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 10:22:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index d4f3d6e6f5..3909a8c74c 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:34+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index 18c8d53e48..02636fe6e0 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index 34fa8b51d4..ae9346697a 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po index b95d768ac9..ba0b0467d9 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po index 7c86ab1cdb..e34ecccba2 100644 --- a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index 94e1d3aadf..4f2b34efb8 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index 86c288266c..895fb0fec3 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po index fbdcdd607f..a0326d510b 100644 --- a/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/gl/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index 589703f2be..5437c8be9a 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index e56954280e..fe27333fca 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po index c43ab1e39e..adebf65d97 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index e6a4611ddf..96ee4a462c 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/pl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pl/LC_MESSAGES/Aim.po new file mode 100644 index 0000000000..5bd38c0c93 --- /dev/null +++ b/plugins/Aim/locale/pl/LC_MESSAGES/Aim.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Aim to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: No idea what the use case for this message is. +msgid "Send me a message to post a notice" +msgstr "Wyślij do mnie wiadomość by dodać ogłoszenie" + +#. 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 "Należy określić użytkownika." + +#. TRANS: Exception thrown in AIM plugin when password has not been specified. +msgid "Must specify a password." +msgstr "Należy określić hasło." + +#. TRANS: Plugin description. +msgid "" +"The AIM plugin allows users to send and receive notices over the AIM network." +msgstr "" +"Wtyczka AIM umożliwia użytkownikom wysyłanie i otrzymywanie powiadomień w " +"sieci AIM." diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 8135074eb9..329fe0bf14 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index f8c6bd28ba..36ae8b8f21 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 160efc9114..02baf416e9 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 07fb1cdd67..7741c00deb 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po index 1e11a27951..a7aa61c4e4 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 08df762bd8..230d1a79b7 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:35+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index 84bcbd7fd6..eb132d2475 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index fe01f04c86..3f1994841e 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 7294c1fb6a..ba16155643 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index f4d47ba3f5..9860606085 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 008965362e..a96df6080d 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 46c3fc7128..33a5aee0ee 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index bb80190f80..677e62767d 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index e250097ae1..d2e1a81610 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 1267362a05..84817e4b03 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 36993630e8..49c5394b83 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index dcc0cdb335..0da4b8b573 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 8f3e20f2f8..9fe47f2a73 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po index 2a56fa7745..95531e2ae9 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:38+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index b428216615..f91855b15b 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po index f90a23ca26..7c1f921878 100644 --- a/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/es/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index 9a007beb4a..6d33f30b88 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po index b5f2b07743..0c69ae377c 100644 --- a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index e4c350f1eb..e4c552449a 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index bf1e7ed390..7982af2c61 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index bdb12d4f6b..1346c1ea45 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:39+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index 1329d5d6f2..e446711d67 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po index 3b225ace2a..d43348e9cd 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:39+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index e09a3eb7be..775d938a6d 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/pl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pl/LC_MESSAGES/ApiLogger.po new file mode 100644 index 0000000000..81259e71ff --- /dev/null +++ b/plugins/ApiLogger/locale/pl/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,24 @@ +# Translation of StatusNet - ApiLogger to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:39+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "Allows random sampling of API requests." +msgstr "Umożliwia losowe próbkowanie żądań interfejsu API." diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index 0b76f17478..2cf832bffb 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po index 1699652d87..99603a516e 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index 5ecc27508a..0f71110ab1 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index c2a6376d31..316645b7ed 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:40+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index 72b51ef7d0..020f1d5e9f 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index ab3c3bd6b2..b354c8615f 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 40b5312c65..f7715b4ef5 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 01cf38080d..396e738af4 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po index c81db16f26..62e9c5731c 100644 --- a/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/gl/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index ede75e17e3..cbe4e3a530 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 206b0aff55..db938d4149 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index b24d1798e3..df9023fc42 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/pl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/pl/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..a8f11eb492 --- /dev/null +++ b/plugins/AutoSandbox/locale/pl/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - AutoSandbox to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:41+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "Automatically sandboxes newly registered members." +msgstr "" +"Automatycznie umieszcza nowozarejestrowanych użytkowników w piaskownicy." + +#. TRANS: User instructions after registration. +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Zauważ, że początkowo będziesz w \"trybie piaskownicy\" więc ogłoszenia nie " +"pojawią się w strumieniach publicznych." + +#. TRANS: User instructions after registration. +#. TRANS: %s is a clickable e-mailaddress. +#, php-format +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to %s to speed up the unsandboxing " +"process." +msgstr "" +"Zauważ, że początkowo będziesz w \"trybie piaskownicy\" więc ogłoszenia nie " +"pojawią się w strumieniach publicznych. Wyślij wiadomość do %s by " +"przyspieszenia proces wyjścia z pisakownicy." diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 5b0061abf7..db821e2318 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 08091c2d60..938c0bbc80 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 533e71a86c..b50ec25022 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index 2844df492a..02fc3af0e5 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po index 9daf03c868..5ee72f968e 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:39+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index 29782bed55..181fce6e41 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index 8f78fdd393..4edd0f537a 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index 1de7cee607..9c75550aa0 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index f35ce79940..4789662030 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po index 17e4ac7be7..2ca2cdc488 100644 --- a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:39+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index e217adf264..9c8a74cc1e 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po index a988f23e06..20c4db4a32 100644 --- a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 80cb43351b..8e4a2a417e 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 780c6cae77..27358d7b15 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po index 02a9c5ac77..39b07553b4 100644 --- a/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/lt/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:40+0000\n" "Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index 01b30cc46a..92076177a0 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po index 0cf0a9269c..4b9222d588 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index 154c27ae5d..f553128c46 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po index 855e8b95bb..d7ee927376 100644 --- a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Autocomplete to Polish (Polski) # Exported from translatewiki.net # +# Author: BeginaFelicysym # Author: Woytecr # -- # This file is distributed under the same license as the StatusNet package. @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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 && " @@ -26,6 +26,7 @@ msgstr "" #. TRANS: Plugin description. msgid "The autocomplete plugin adds autocompletion for @ replies." msgstr "" +"Wtyczka autouzupełniania dodaje automatyczne uzupełnianie dla odpowiedzi @." #. TRANS: Client exception in autocomplete plugin. msgid "Access forbidden." diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index 299da86976..078aa16f7c 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 793eee6b6c..d66b651e53 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 32ded75ff2..89f9c8b236 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index 3fbaca9a33..991fc41f86 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 3ab386d9f6..9503583b42 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po index 5c633ed85e..e113342fe5 100644 --- a/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/es/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index 444e957ea8..910ba73ac4 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 8774a0c62f..51d869a530 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po index fdbd414d37..ed92ce7aaa 100644 --- a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 9732dbcfcb..de8181636e 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 8f4c79603d..0cfdf2d3e6 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 6818bd2e95..797ec2449d 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index dfd7e85a91..32bf482229 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/pl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pl/LC_MESSAGES/Awesomeness.po new file mode 100644 index 0000000000..099c78f437 --- /dev/null +++ b/plugins/Awesomeness/locale/pl/LC_MESSAGES/Awesomeness.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Awesomeness to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 for a sample plugin. +msgid "" +"The Awesomeness plugin adds additional awesomeness to a StatusNet " +"installation." +msgstr "" +"Wtyczka Awesomeness dodaje dodatkowe niesamowitości do instalacji StatusNet." diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index 3276d526f6..941216238d 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index 4a7a24c76a..829f8660a1 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po index 0f9903c1cb..632f48bb02 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 6321990723..b9fe7fff60 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index 453e395651..00d920b92f 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:42+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index b697c4e525..6fcb2bf721 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index 924a5b28f0..660ed2f03b 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po index 7b54a62f69..84edffe6ae 100644 --- a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index a1857cedc9..158c0a6df2 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index 59aaa89788..4904ab2980 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:43+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index 9c931e47bb..cec4edef04 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 1b6202f473..2132fb554a 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 7628fdb4d0..3b2d08d370 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 7d7a02f13e..c3d0e306bd 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:43+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 88211fa299..f09e09135a 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index f7e606e185..801be47802 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index f60fdeb1bd..f5cc7d49c6 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index a1b52bef8c..d1c7faaba8 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index b8dda483c2..559492a742 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 37e4fa8284..7371645bb4 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-12-19 00:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -90,7 +90,7 @@ msgstr "" #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. #: BlacklistPlugin.php:513 #, php-format -msgid "Notices from nickname \"%s\" disallowed." +msgid "Notices from nickname \"%s\" are disallowed." msgstr "" #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index de6105e61f..e1ec1db2dd 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -86,7 +85,7 @@ msgstr "Карыстальнік з «%s» заблякаваны." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. #, fuzzy, php-format -msgid "Notices from nickname \"%s\" disallowed." +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Паведамленьні ад карыстальніка «%s» забароненыя." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index ea4ab3fab4..c3d868fef8 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -83,8 +82,8 @@ msgid "Users from \"%s\" are blocked." msgstr "S'han blocat els usuaris de «%s»." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "No es permeten avisos del sobrenom «%s»." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index ba27240a4e..1d013c6417 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -84,8 +83,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Benutzer von „%s“ sind gesperrt." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Beiträge vom Benutzernamen „%s“ sind nicht erlaubt." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index b7d4108386..212cbc298e 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -85,8 +84,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Los usuarios de \" %s \" están bloqueados." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Noticias del usuario \" %s \" no estan permitidas." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 3709050328..a73011136c 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -84,8 +83,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Les utilisateurs de « %s » sont bloqués." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Messages de « %s » refusés." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index dda7803e03..e083231e32 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -83,8 +82,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Os usuarios de \"%s\" están bloqueados." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "As notas do alcume \"%s\" non están permitidas." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 93d3feab44..85bba83a22 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -83,8 +82,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Le usatores de \"%s\" es blocate." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Notas del pseudonymo \"%s\" non permittite." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index c7c69d60f4..029c188e59 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -82,8 +81,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Корисниците од „%s“ се блокирани." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Забелешките од прекарот „%s“ не се дозволени." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 08b51e4a67..9fa3b68ffe 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -82,8 +81,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Gebruikers van \"%s\" zijn geblokkeerd." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Gebruiker \"%s\" mag geen berichten plaatsen." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index 731e169ca5..26f7c2f55b 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " @@ -86,7 +85,7 @@ msgstr "Пользователи с «%s» заблокированы." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. #, fuzzy, php-format -msgid "Notices from nickname \"%s\" disallowed." +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Сообщения от имени «%s» не допускаются." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index b73c66a3a2..d837d60e00 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -83,9 +82,9 @@ msgid "Users from \"%s\" are blocked." msgstr "Användare från \"%s\" är blockerade." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." -msgstr "" +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." +msgstr "Användare från \"%s\" är blockerade." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. #, php-format diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index b813814ddb..316cf5213a 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -84,8 +83,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Hinahadlangan ang mga tagagamit na mula sa \"%s\"." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Hindi pinapayagan ang mga pabatid mula sa palayaw na \"%s\"." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index a72c2da650..19846e3d02 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " @@ -83,8 +82,8 @@ msgid "Users from \"%s\" are blocked." msgstr "Користувачів з «%s» заблоковано." #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. -#, php-format -msgid "Notices from nickname \"%s\" disallowed." +#, fuzzy, php-format +msgid "Notices from nickname \"%s\" are disallowed." msgstr "Дописи від користувача «%s» заборонені." #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index aef0b9621c..09e3ec3051 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -86,7 +85,7 @@ msgstr "" #. TRANS: Exception thrown trying to post a notice while having a blocked nickname. %s is the blocked nickname. #, php-format -msgid "Notices from nickname \"%s\" disallowed." +msgid "Notices from nickname \"%s\" are disallowed." msgstr "" #. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname. diff --git a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po index c43f862cc1..759116b291 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:45+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 3e897d4cdd..7dd983c360 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 90aa85a7ed..dc69574d1a 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index b94939ab32..4d8ed46e3b 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index cbd661a35f..97165a30b1 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 0041b6c7c7..23f294a4ef 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 479827165f..f77d002a0e 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po index b98b82546e..a3572e81a0 100644 --- a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index aa7bcd78e9..4f8b3fcaa1 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index bbe85e2604..3041b42d58 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index 3aff083a99..52f5591acb 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index cf20faf07d..25e1e180a0 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:46+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 567c8268eb..8ad18b9292 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 368fbb64ac..2e2edf5f35 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:47+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 8055145852..05ffb72de8 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index 9e9d0e8866..eb20b151f0 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:47+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index fa23cf51c8..5fc5320c2f 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 790eb6ca2a..ef526a00b5 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index e02352714d..38ee0bf7ab 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po index 4c31268e05..fd761b5592 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po index 85f9a49101..2233b871cc 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index cff7c109f1..46627ed113 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 8f9bd375f3..1e7b82e7ad 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/es/LC_MESSAGES/Blog.po b/plugins/Blog/locale/es/LC_MESSAGES/Blog.po index 6c22c394e5..a7df38e0ed 100644 --- a/plugins/Blog/locale/es/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/es/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po index 78b5ae9f28..1f422f49f0 100644 --- a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po index 1f32bcbbe4..bc7bb4f39f 100644 --- a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po index 69a7c00b67..97402f45bd 100644 --- a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 4f5df94c12..c14974dd7b 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po b/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po index ba146dd3f1..7eeeddf972 100644 --- a/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/lt/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:48+0000\n" "Language-Team: Lithuanian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index 59d2fe8a7c..99143f434a 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index de5309ebc0..4191bd6d46 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po index a5105ad5c7..d65ef076b3 100644 --- a/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/tr/LC_MESSAGES/Blog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:49+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-12-03 13:48:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-02-25 15:25:35+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 7f94bb70ad..5b3fb7a4e5 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 91473d625c..61496762ca 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 2fbc61de58..d6f49d720a 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po index 927a580059..43a8f519dd 100644 --- a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index aae7b160c8..bdf1d59265 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po index 3aa265fc3d..05edaaeb87 100644 --- a/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:49+0000\n" "Language-Team: Lithuanian \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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index c92d0e1f83..a9cce5e314 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index f9db9506ff..d158816c4f 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:49+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 (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index f417bd3d30..fdf09f051b 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:01:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index a69aedaf3e..f11da6483e 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 53ea246483..5cefba799c 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 87e537dfa7..4b473ffc8d 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-POT-Import-Date: 2012-01-30 18:14:59+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 91ed7d9ed8..427648d710 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:49+0000\n" "Language-Team: Arabic \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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index ad1dc798c3..46a8add27e 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 2c91cbe463..3f4a9f71a2 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po index 474f0df41d..0fefc974db 100644 --- a/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/es/LC_MESSAGES/Bookmark.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po index a73434f7d7..2bb99dfae2 100644 --- a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:50+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 2c6e2fc6e8..38df2725ff 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po index 546bac1c86..7c7fb9338a 100644 --- a/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/gl/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index a1fcfee75b..afbea20802 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 8d99c98a08..5538c64d72 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 3694e2fedc..6ce2882f62 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index b150f788ce..dd3f7b46d8 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/pl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/pl/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..125f9a8db9 --- /dev/null +++ b/plugins/Bookmark/locale/pl/LC_MESSAGES/Bookmark.po @@ -0,0 +1,253 @@ +# Translation of StatusNet - Bookmark to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# Author: Woytecr +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:51+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: Client exception thrown when a bookmark in an import file is incorrectly formatted. +msgid "No tag in a
." +msgstr "" + +#. TRANS: Client exception thrown when a bookmark in an import file is private. +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "Nie ma takiej zakładki." + +#. 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 "" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting bookmarks." +msgstr "" + +#. 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 "Importowanie zakładek del.icio.us" + +#. TRANS: Client exception thrown when a bookmark is formatted incorrectly. +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +#. TRANS: Server exception thrown when a bookmark has multiple attachments. +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Bookmark" +msgstr "Zakładka" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "Bookmark on %s" +msgstr "" + +#. TRANS: Client exception thrown when trying to save a new bookmark that already exists. +msgid "Bookmark already exists." +msgstr "Zakładka już istnieje." + +#. 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 "" + +#. 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 "" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "URL" +msgstr "Adres URL" + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Add" +msgstr "Dodaj" + +#. TRANS: Client exception thrown when an unknown URL is provided. +msgid "Unknown URL." +msgstr "Nieznany adres URL." + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. +msgid "You may not restore your account." +msgstr "" + +#. 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 "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception 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 "" + +#. TRANS: Client exception thrown when a file was only partially uploaded. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present. +msgid "Missing a temporary folder." +msgstr "Brak katalogu tymczasowego." + +#. TRANS: Client exception thrown when writing to disk is not possible. +msgid "Failed to write file to disk." +msgstr "Zapisanie pliku na dysku nie powiodło się." + +#. TRANS: Client exception thrown when a file upload has been stopped. +msgid "File upload stopped by extension." +msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." + +#. TRANS: Client exception thrown when a file upload operation has failed. +msgid "System error uploading file." +msgstr "Błąd systemu podczas wysyłania pliku." + +#. 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 "Nie ma takiego pliku: \"%s\"." + +#. 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 "To nie jest zwykły plik: \"%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 "Plik \" %s \" nie do odczytu." + +#. TRANS: Success message after importing bookmarks. +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +#. TRANS: Busy message for importing bookmarks. +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +#. TRANS: Form instructions for importing bookmarks. +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + +#. TRANS: Button text on form to import bookmarks. +msgctxt "BUTTON" +msgid "Upload" +msgstr "Prześlij" + +#. TRANS: Button title on form to import bookmarks. +msgid "Upload the file." +msgstr "Prześlij plik" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Title" +msgstr "Tytuł" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Notes" +msgstr "" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +#. TRANS: Field title on form for adding a new bookmark. +msgid "Comma- or space-separated list of tags." +msgstr "" + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Save" +msgstr "Zapisz" + +#. TRANS: Title for action to create a new bookmark. +msgid "New bookmark" +msgstr "Nowa zakładka" + +#. 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 "" + +#. TRANS: Client exception thrown when trying to create a new bookmark without a title. +msgid "Bookmark must have a title." +msgstr "" + +#. TRANS: Client exception thrown when trying to create a new bookmark without a URL. +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after posting a bookmark. +msgid "Bookmark posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index 54ce325368..2b009d196a 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index 50cb2b9a61..fce4a5f6e7 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index eb3c1b8e9a..b0b770a043 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-10-10 14:11:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po index 78b7d2ee02..97a275a816 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:51+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index ea3a0e47bd..820e52b0c9 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:51+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index 836a5effe4..71b0765c41 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index 729dcdf3e8..0835644075 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index beefca332b..a42e503bd1 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 2033ab4a28..75c6b39da2 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po index 24fdeb63bb..fb42ebc29b 100644 --- a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index a9c8df3a79..b302920cd2 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 54b60b06ae..fdc8eb3e8e 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index 1c279b22f0..83ef9760fa 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 47e9136889..4c2c99279e 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:52+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 259850378c..d3849d886e 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 7529bf53cc..414b9f8155 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index 0c2f10fc72..b3fb5e5ca4 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index b12ec81484..8b50c8f71e 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index bf7c0b34ea..d20f40bab8 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index a8077e4734..deca078bb0 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index c8100975f5..db1c57748e 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:52+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index 973e3eac96..57e04f9b39 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po index 5875602279..392b35fa55 100644 --- a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 8faed0a766..7bfe22055b 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index fe73d46c1f..8186d459f6 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po index 3057d2278d..61c4b0539d 100644 --- a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:53+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 0a1db493d1..30dc9b9bc4 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po index 5ffb2e40a5..b8830a0062 100644 --- a/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/gl/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index 5946ab1414..637f4ce604 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:53+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index d2cd5b783b..30eb0dbc6b 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index 022657eea0..1d8a56d806 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index bfe3980b9d..a5b071801c 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 91de2ed935..f92902f785 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:53+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index 6b38ffe198..16be6f560f 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 397c85ed39..47bd1191eb 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 161761928c..2dfd7c3809 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index dda1296277..726d9de0b9 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index 63ead0e8b8..ca5d9b4820 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:54+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 158d99a8ee..f16ee84c7c 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 9106c80f8f..775a55c17f 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po index 560586386b..87732d4865 100644 --- a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index c994e9368d..e2a4fae693 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po index 7aa46c0fe2..f1e6b552bd 100644 --- a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:54+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 299365ea78..e3b4c5c863 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 6bddacb954..a6bf0d3d4f 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index ef9fc43b57..0ce349c2aa 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:54+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index e74b073e8f..4bf5c9b49a 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 23669c0225..369043ed00 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index 8544add5d3..da975fded8 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index 341d3b634e..4b0fb945ba 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index f5f25e246d..4bd8119b08 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index ba9a4a3de1..f180be4ed8 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 00aa7772c3..84e2aa3a27 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 91d12920e9..6639e0e9cd 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po index 12f1a3c18b..24c42cb7c4 100644 --- a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 48baa2e893..be8750ae23 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po index 1d8df9d5fd..80834c2bb5 100644 --- a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index 517131feec..abcb93b616 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index e252668a16..95374034dd 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index 8f91e270cd..f5987862f3 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index f0f51a5db2..26a556dbc9 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 733ea1aaa1..b823efc483 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index 8d92adf800..73efb433ed 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index a0f74fe27f..265b83c58a 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 5505e1fad0..ff92635f0d 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po index 59ecb0798f..508154831d 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 2ca633331f..2f3c67666c 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index c3f1ad4d60..b831d7e793 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 85c8d5219f..6c9c1e8001 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index a37a244f95..b68873e359 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index 73ccda200e..1088d40aa0 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index fb5197e682..874b3e47ca 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po index 0ae76b6f57..c0dcfe4674 100644 --- a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 58464db8fa..6097735608 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index b63911d81f..63b3e7c58d 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index c89a5f397e..c43452cf14 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index da08f60e75..56d4b91500 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 6e0be1f416..c0cf022834 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index ad492907b8..20fa595352 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 030f3edba4..4929ebe803 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index bd0c26824b..96c594e05a 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-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:56+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,9 +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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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 02dbd68dcd..42206dc7db 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 56ae9ab7e3..738a1ac0d7 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index fbf82724da..9a85735861 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 1b960cfe97..518ce9c5c8 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index f3628ed17c..e1b9ec4fc7 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po index 21b1084b14..f1d320673c 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:57+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index a0d1858511..0a75804480 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index 415bd37c79..75869a86d3 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/es/LC_MESSAGES/Directory.po b/plugins/Directory/locale/es/LC_MESSAGES/Directory.po index aa84b3b5af..aafa7b5630 100644 --- a/plugins/Directory/locale/es/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/es/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po index e6d7c9269e..ea15e1cc10 100644 --- a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:58+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index e05f3552e0..1dc3df3d5c 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:58+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index a5c86bb9d9..394999b97a 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po index f0ec74aca5..7f1b0649a6 100644 --- a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index b34d76d27f..3f799c0d4b 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po index 6adb5f387f..6bb0ed3810 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 124e9818d1..d594d94fd9 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index d7b42ed621..b27d5181e7 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index 942b77b41f..1080bb5cc7 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index a0844b65d6..0dd44c7993 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index a4a91b403e..c055396ffb 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index 1dac2ee32f..82ef7ef282 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:59+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 8f852f3f86..0dea8781ad 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:45:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index 333834cfd6..fbd9552951 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index 272ec4e444..2a767e6561 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 75cf40b35d..c3c56c1a3b 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 8b18d5e3ad..4ec84647d3 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:00+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 11849b6e25..9d27e57ca5 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po index 6f8b5d1aa3..4b9d0c5e6a 100644 --- a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 61b2de8e1c..839b4dbc75 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 5c49da0b98..911c5501b6 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index f7affbc899..c5a3c000c9 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index 3c3205597b..14e0cf6730 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index ac1bc1e365..2fd80cc50a 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:46:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 9799330bd6..fe442c0fe0 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 0d91b05594..6e1c7df8df 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index d602850940..916b0e55b4 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 2fa4ab61e8..37e7ae418a 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index 6e256fec98..88debd1b2f 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index bf17b61a16..cf0f591c6a 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 792c685a98..a2da213044 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index f5ff138092..76e3a07120 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index ac735266fd..0229c8ca76 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index af66dd2c1c..7d601a3947 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po index cb547f752d..6a5ed10755 100644 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 927e780b7d..39b8dc25ce 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 721d963195..d9c578a2f1 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 56696918e2..0d26240df0 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po index 7ca4f7ca8f..c462afd19c 100644 --- a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index cd12ee6110..023c1ad234 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index eea04f717a..1409cad6c0 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 6bb0ca65a0..1f1283ac97 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index fda899769e..01d4f55193 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..acb65138fc --- /dev/null +++ b/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - Disqus to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: 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 "" +"Włącz JavaScript, aby wyświetlić [komentarze zasilane przez Disqus] (http://" +"disqus.com/?ref_noscript= %s )." + +#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". +msgid "Comments powered by " +msgstr "Komentarze zasilane przez " + +#. TRANS: Plugin supplied feature for Disqus comments to notices. +msgid "Comments" +msgstr "Komentarze" + +#. TRANS: Plugin description. +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Użyj Disqus by dodawać komentarze do " +"stron ogłoszeń." diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index 0230bc2479..7373a8763e 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:02+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index c3ef435caa..650d29a098 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index e55fecf03c..4673badc90 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index fe84686759..37d6476fac 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index 7ebc313b1c..b86d688b54 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po index 3d56c3428b..04283084c6 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po index 33b61b6c66..c99e2c3e58 100644 --- a/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/es/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index fa0d186301..383ef79219 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po index 9bab419a9c..6b95750119 100644 --- a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index 656ab571c3..0668ff3b31 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index 6644e577ed..17e494037f 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index 7c212c2928..0aac6f3862 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po index e7554337d7..f86d3f8465 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index efbe58e412..d70a73f512 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index 942c8295a6..ada666859c 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index b3ede7f9d5..1ebb0d985f 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po index ed2906cd8b..ca56e32884 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po index adbb0a1f9a..00fe4f658c 100644 --- a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 2f80e83ade..e907d92906 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po index ddedecc6d6..4145dffadb 100644 --- a/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/es/LC_MESSAGES/DomainWhitelist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po index ba7e75a452..23aebf2032 100644 --- a/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/gl/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 515f1921f8..16c8aaa7a5 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po index af84f197a6..955cef4c26 100644 --- a/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/lt/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Lithuanian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lt\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index cfbddf7c4c..086fc6a09b 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index f170dcfd74..1c91f5eb7d 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index 328737fee6..3bd291c238 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index e556160bac..fd6291ae66 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:08:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index 49d765840e..ff0c3574a7 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 4a2dba1fdd..dc8ff349e4 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index ee564aec62..3f49c16448 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 9ae1a6d9cf..940140b1c8 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index ec8563a2c1..d130d0b6f8 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po b/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po index fe12fe9d07..b609d2bfe5 100644 --- a/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index ab82e6d2ce..0a0793f67a 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index 63a0e45f76..b44a165481 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po index 6a50ad8fbf..7a3bcdae38 100644 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index b5bd85a9d1..0be0d8578a 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 5f85947e8f..86367b3fd3 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index cb2a384e33..f283b0adf8 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index c9da24c94c..56e75516f8 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 6150985f2a..0b8c27e85d 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 26cc7c91b2..cf27719fb9 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 498ba94e46..ea029d0bfc 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..0dd356e35e --- /dev/null +++ b/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Echo to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Echo umożliwia dodawanie komentarzy do " +"stron ogłoszeń." diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 9a3fe6279e..95952d0ba0 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index c3ca6cb4fb..cc38f028df 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 0c174b044d..7345c7f8c5 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 20799f37e3..a824abfd11 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index f9688156c2..74347a708a 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index efb2fbab59..ae3b157102 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 5c568957d3..584dadb8c2 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 82d738bf85..fb148a422c 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index a41b5ab243..351384dd45 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index db2a572fd7..787673dfc4 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 54e45a3a07..e73af696e2 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po index b295405af2..35669107cd 100644 --- a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 861f31c240..b35497f8d1 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index f8c2d3f798..3ab8a372e3 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po index dcf35c3f17..7f79bd6aa0 100644 --- a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index f7dbc00411..260acacec0 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 39ac2cbb98..f1f80415eb 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index b8f052adc5..c21aa60683 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 80f3203343..c8ab2f8632 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:08+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 9143956752..b5879db8b2 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index a8b73444e8..acc7fc4fa6 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:08+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index f49b33aff7..d02a82c8a7 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/pl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pl/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..cf689d39b6 --- /dev/null +++ b/plugins/EmailAuthentication/locale/pl/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - EmailAuthentication to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:08+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Wtyczka uwierzytelniania wiadomości E-mail pozwala użytkownikom na logowanie " +"przy użyciu ich adresów e-mail." diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index a43ea9929b..f7690dd432 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index f622719390..e6891ebcb6 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 9353e56592..7e7a5fb57e 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 00ea0df2fc..ff5c846d6f 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index 667995abb6..5c3907b918 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index fa55defc44..6b6c85dd4d 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po index aeee8170b4..9bee4f83f1 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:09+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index 6bc3c5d63d..8e66d56899 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index c677e1e100..8d2745d6a6 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:09+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -52,7 +51,7 @@ msgstr "Registrar-se" #. TRANS: Title for page where to register with a confirmation code. msgctxt "TITLE" msgid "Complete registration" -msgstr "" +msgstr "Registre complet" #. TRANS: Confirmation text after initial registration. #. TRANS: %s an e-mail address. diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index 185237140e..c08dfa12df 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po index 01d0af3b9e..1cbc81c981 100644 --- a/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/es/LC_MESSAGES/EmailRegistration.po @@ -1,6 +1,7 @@ # Translation of StatusNet - EmailRegistration to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Erchache2000 # Author: Od1n # -- @@ -10,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -159,14 +159,13 @@ msgid "Same as password above." msgstr "Igual a la contraseña anterior" #. TRANS: Checkbox title for terms of service and privacy policy. -#, fuzzy, php-format +#, php-format msgid "" "I agree to the Terms of service and Privacy policy of this site." msgstr "" -"Estoy de acuerdo con el %1$ s " -"\"> términos de servicio y %1" -"$ s\" > política de privacidad de este sitio." +"Estoy de acuerdo con los Términos de servicio y la Política de protección de datos de este sitio." #. TRANS: Error text when trying to register with an already registered e-mail address. #. TRANS: %s is the URL to recover password at. diff --git a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po index 828710656d..b282a7cf3b 100644 --- a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 5d7a243687..cb6c1797ad 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: OngolaBoy # Author: Valeryan 24 # -- # This file is distributed under the same license as the StatusNet package. @@ -13,26 +14,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\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 "" +msgstr "Inscription non autorisée." #. TRANS: Client exception trown when trying to register without an invitation. msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Désolé, seulement les personnes invitées peuvent s'inscrire." #. TRANS: Client exception thrown when no confirmation code was provided. msgid "No confirmation code." @@ -40,7 +40,7 @@ msgstr "Aucun code de confirmation." #. TRANS: Client exception trown when using an invitation multiple times. msgid "Invitation already used." -msgstr "" +msgstr "Invitation déjà utilisée." #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." @@ -90,7 +90,7 @@ msgstr "Les mots de passe ne correspondent pas." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "Impossible d'enregistrer cet utilisateur." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. diff --git a/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po index 76f8ec9eb6..30fff5087a 100644 --- a/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/gl/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index 1796c07aeb..7b72eddc58 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:10+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 2519284b21..60a64c1e03 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 76164cbc5d..7c85b750c2 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index 9a55503ebe..dddeeca43a 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po index 199558e84e..bfa2efa73f 100644 --- a/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ru/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index 49a5715cef..49fedf8b23 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:10+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index 3e081a7344..b11152f47f 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index 0660a06e31..534ad446c7 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po index 3f436ae5a0..fc1ddcfa26 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/EmailReminder/locale/ca/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ca/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..61d6224dce --- /dev/null +++ b/plugins/EmailReminder/locale/ca/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,49 @@ +# Translation of StatusNet - EmailReminder 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 - EmailReminder\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:10+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "" + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "" + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Recordatori - confirmeu el registre!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Segon recordatori - confirmeu el registre!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Recordatori final - confirmeu el registre!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "" diff --git a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po index 196a458ad1..25e9104bf4 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po index 6e5de520bb..fa583adf71 100644 --- a/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/es/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po index 873b02cc8f..609eae81b9 100644 --- a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:11+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po index 34da35e4cc..14590e2a5f 100644 --- a/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/fr/LC_MESSAGES/EmailReminder.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Od1n +# Author: OngolaBoy # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,22 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:09:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\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 "" +msgstr "Envoyer des rappels par courriel pour diverses choses." #. TRANS: Server exception thrown when a reminder record could not be inserted into the database. msgid "Database error inserting reminder record." @@ -45,9 +45,9 @@ msgstr "Dernier rappel - veuillez confirmer votre inscription !" #. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. #, php-format msgid "Reminder - You have been invited to join %s!" -msgstr "" +msgstr "Rappel - Vous avez été invité à joindre %s!" #. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. #, php-format msgid "Final reminder - you have been invited to join %s!" -msgstr "" +msgstr "Dernier rappel - Vous avez été invité à joindre %s!" diff --git a/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po index 73841e13b6..ba95f1511d 100644 --- a/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/gl/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index 03e054ff88..9194509c18 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po index ff7dc80c0d..457515e5dc 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po index 0ec4579d33..8327216631 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po index 5fc9dd7ba2..c21eb60a17 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index e6d59fc29d..7418dd79fc 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:11+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -31,7 +30,7 @@ msgstr "Les vostres darreres actualitzacions de %s" #. 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 "" +msgstr "Actualitzacions recents de %1$s per a %2$s:" #. TRANS: Link text for link to conversation view. msgid "in context" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 7a8e9815a3..b2b63dfdbb 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po index 7e478ca482..5fcf362ea7 100644 --- a/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/es/LC_MESSAGES/EmailSummary.po @@ -1,6 +1,7 @@ # Translation of StatusNet - EmailSummary to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Erchache2000 # -- # This file is distributed under the same license as the StatusNet package. @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -39,11 +39,10 @@ msgstr "en contexto" #. 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. -#, fuzzy, php-format +#, php-format msgid "change your email settings for %2$s" msgstr "" -"%1$ s \"> cambiar la " -"configuración de correo electrónico para %2$s" +" cambia su configuración de correo electrónico para %2$s" #. TRANS: Plugin description. msgid "Send an email summary of the inbox to users." diff --git a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po index 10a685bfca..36c9e23051 100644 --- a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:11+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po index eab6ce42cd..cefcd2094d 100644 --- a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po @@ -1,6 +1,8 @@ # Translation of StatusNet - EmailSummary to French (Français) # Exported from translatewiki.net # +# Author: Iketsi +# Author: OngolaBoy # Author: Peter17 # -- # This file is distributed under the same license as the StatusNet package. @@ -9,40 +11,45 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\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 "Recent updates from %1s for %2s:" -msgstr "" +msgid "Your latest updates from %s" +msgstr "Les dernières activités en provenance de %s" +#. 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 "Dernières activités de %1$s pour %2$s:" + +#. TRANS: Link text for link to conversation view. msgid "in context" -msgstr "" +msgstr "dans le contexte" +#. 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 %2s

" -msgstr "" - -msgid "Updates from your network" -msgstr "" +msgid "change your email settings for %2$s" +msgstr "changer vos paramètres de messagerie pour %2$s" +#. TRANS: Plugin description. msgid "Send an email summary of the inbox to users." msgstr "" "Envoyer un résumé de la boîte de réception par courrier électronique aux " "utilisateurs." #. TRANS: Checkbox label in e-mail preferences form. -#, fuzzy -msgid "Send me a periodic summary of updates from my network." -msgstr "" -"Envoyer un résumé de la boîte de réception par courrier électronique aux " -"utilisateurs." +msgid "Send me a periodic summary of updates from my network" +msgstr "M'envoyer un rapport périodique des activités de mon réseau" diff --git a/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po index 3740bc6a74..2f7ea723f6 100644 --- a/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/gl/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index d52ddca289..997172a019 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 85ac61cae1..6b39aa753b 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index c05bb37cce..a1be9f3692 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index 780d9410f2..2943495ed1 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 8b569f7127..4f2e40923a 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 5d0f0c200b..7593d10bb6 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:12+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 9aa2195e13..39ee383cf4 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index 015edd937a..14de4c29b2 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index f1eb6b6439..03def09fbf 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/es/LC_MESSAGES/Event.po b/plugins/Event/locale/es/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..4191bda525 --- /dev/null +++ b/plugins/Event/locale/es/LC_MESSAGES/Event.po @@ -0,0 +1,419 @@ +# Translation of StatusNet - Event to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# Author: Erchache2000 +# Author: McDutchie +# Author: Od1n +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 hour)" + +#, php-format +msgid "(%.1f hours)" +msgstr "(%.1f horas)" + +#, php-format +msgid "(%d hours)" +msgstr "(%d horas)" + +#. TRANS: Client exception thrown when trying to create an event that already exists. +msgid "Event already exists." +msgstr "Evento ya existe." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#. 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 "No conectado." + +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "Envío de formulario inesperado." + +#. TRANS: Client error displayed when using an action in a non-AJAX way. +msgid "This action is AJAX only." +msgstr "Esta acción sólo es AJAX." + +#. 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 "No hay tal RSVP." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "No hay tal evento." + +#. 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 de RSVP para \" %2$s \"" + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will attend this event." +msgstr "Usted asistirá a este evento." + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will not attend this event." +msgstr "Usted no asistirá a este evento." + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You might attend this event." +msgstr "Usted puede asistir a este evento." + +#. 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 "Nuevo RSVP" + +#. 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 "Debe iniciar sesión para ver un evento RSVP." + +#. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). +msgid "Unknown submit value." +msgstr "Valor desconocido enviado." + +#. TRANS: Page title after creating an event. +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Evento registrado" + +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "Cancel RSVP" +msgstr "Cancelar RSVP" + +#. 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 "RSVP:" + +#. TRANS: Button text for RSVP ("please respond") reply to confirm attendence. +msgctxt "BUTTON" +msgid "Yes" +msgstr "Sí" + +#. TRANS: Button text for RSVP ("please respond") reply to deny attendence. +msgctxt "BUTTON" +msgid "No" +msgstr "No" + +#. TRANS: Button text for RSVP ("please respond") reply to indicate one might attend. +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Quizás" + +#. 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 del evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Start date" +msgstr "Fecha de inicio" + +#. TRANS: Field title on event form. +msgid "Date the event starts." +msgstr "Fecha de inicio del 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 "El evento empieza a las (%s)." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "End date" +msgstr "Fecha de finalización" + +#. TRANS: Field title on event form. +msgid "Date the event ends." +msgstr "Fecha de fin del 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 de fin del evento" + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Where?" +msgstr "¿Dónde?" + +#. TRANS: Field title on event form. +msgid "Event location." +msgstr "Lugar del 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 "Dirección URL para más información" + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Description" +msgstr "Descripción" + +#. TRANS: Field title on event form. +msgid "Description of the event." +msgstr "Descripción del evento" + +#. TRANS: Button text to save an event.. +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: Plugin description. +msgid "Event invitations and RSVPs." +msgstr "Invitaciones al evento y RSVP." + +#. 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 "Demasiados objetos de actividad" + +#. TRANS: Exception thrown when event plugin comes across a non-event type object. +msgid "Wrong type for object." +msgstr "Tipo de objeto erróneo" + +#. TRANS: Exception thrown when trying to RSVP for an unknown event. +msgid "RSVP for unknown event." +msgstr "RSVP para evento desconocido." + +#. TRANS: Exception thrown when event plugin comes across a undefined verb. +msgid "Unknown verb for events." +msgstr "Verbo desconocido para los eventos." + +#. TRANS: Exception thrown when event plugin comes across a unknown object type. +msgid "Unknown object type." +msgstr "Tipo de objeto desconocido." + +#. TRANS: Exception thrown when referring to a notice that is not an event an in event context. +msgid "Unknown event notice." +msgstr "Aviso de evento desconocido." + +#. TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond"). +msgid "RSVP already exists." +msgstr "RSVP ya existe." + +#. TRANS: Exception thrown when requesting an undefined verb for RSVP. +#, php-format +msgid "Unknown verb \"%s\"." +msgstr "Verbo \"%s\" desconocido." + +#. TRANS: Exception thrown when requesting an undefined code for RSVP. +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Código \"%s\" desconocido." + +#. 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 "RSVP %s no se corresponde con un aviso en la base de datos." + +#. 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 "Ningún perfil con el ID %s." + +#. 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 "Ningún evento con el ID %s." + +#. 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 está asistiendo a " +"%4$s." + +#. 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 no asiste a %4$s." + +#. 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 quizás asista a " +"%4$s." + +#. 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 "Código de respuesta desconocido %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 "un evento desconocido" + +#. 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 asiste a %2$s." + +#. 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 no asiste a %2$s." + +#. 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 podría asistir a %2$s ." + +#. TRANS: Title for new event form. +msgctxt "TITLE" +msgid "New event" +msgstr "Nuevo evento" + +#. TRANS: Client exception thrown when trying to post an event while not logged in. +msgid "Must be logged in to post a event." +msgstr "Debe estar conectado para poder publicar un evento" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Title required." +msgstr "Título requerido" + +#. TRANS: Client exception thrown when trying to post an event without providing a start date. +msgid "Start date required." +msgstr "Fecha de inicio requerida" + +#. TRANS: Client exception thrown when trying to post an event without providing an end date. +msgid "End date required." +msgstr "Fecha de término requerida" + +#. 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 "No fue posible analizar la fecha \"%s\"" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Event must have a title." +msgstr "El evento debe tener un título" + +#. TRANS: Client exception thrown when trying to post an event without providing a start time. +msgid "Event must have a start time." +msgstr "El evento debe tener hora de inicio" + +#. TRANS: Client exception thrown when trying to post an event without providing an end time. +msgid "Event must have an end time." +msgstr "El evento debe tener hora de término" + +#. TRANS: Client exception thrown when trying to post an event with an invalid URL. +msgid "URL must be valid." +msgstr "La dirección URL debe ser válida" + +#. 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 "Descripción:" diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po index 3d8b7822df..bdebcb9b6c 100644 --- a/plugins/Event/locale/eu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index f6c68ecaf5..ebf0989c9d 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -249,7 +248,7 @@ msgstr "Invitations aux événements et RSVP." #. TRANS: Title for event application. msgctxt "TITLE" msgid "Event" -msgstr "Evénement" +msgstr "Évènement" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po index 9afa86e1ae..2447918006 100644 --- a/plugins/Event/locale/gl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 52970174cd..4b45be19b9 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 1fc0006c92..1094025b3f 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index bc86e9edbd..a00d6d3b9b 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:13+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index c123b134b5..a9149fa0be 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 50a324fc85..a9a4c02f03 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 3d5c67edbf..d6752bee73 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 2a08a6ac92..cbbc692da3 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:10:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po index e8ad6e0e24..1d041ee44d 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 0b1b679f5b..cf00238aea 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:02:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index 9053cd53e8..f06294f603 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index 50d6fa7811..17681e9613 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/es/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/es/LC_MESSAGES/ExtendedProfile.po new file mode 100644 index 0000000000..e184b9275f --- /dev/null +++ b/plugins/ExtendedProfile/locale/es/LC_MESSAGES/ExtendedProfile.po @@ -0,0 +1,231 @@ +# Translation of StatusNet - ExtendedProfile to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# Author: Od1n +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:15+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for extended profile settings. +msgid "Extended profile settings" +msgstr "Parámetros de perfil extendidos" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Puede actualizar su información de perfil personal aquí para que la gente " +"pueda saber más sobre usted." + +#. 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 "Hay un problema con su contraseña de sesión. Inténtelo de nuevo." + +#. TRANS: Message given submitting a form with an unknown action. +msgid "Unexpected form submission." +msgstr "Envío de formulario no esperado." + +#. TRANS: Success message after saving extended profile details. +msgid "Details saved." +msgstr "Detalles guardados." + +#. 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 "Debe suministrar una fecha para \"%s\"" + +#. TRANS: Exception thrown on incorrect data input. +#. TRANS: %1$s is a field name, %2$s is the incorrect input. +#, php-format +msgid "Invalid date entered for \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when entering an invalid URL. +#. TRANS: %s is the invalid URL. +#, php-format +msgid "Invalid URL: %s." +msgstr "" + +#. TRANS: Server error displayed when a field could not be saved in the database. +msgid "Could not save profile details." +msgstr "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "" + +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "" + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Edit extended profile settings" +msgstr "" + +#. TRANS: Link text for link on user profile. +msgid "Edit" +msgstr "Editar" + +#. TRANS: Plugin description. +msgid "UI extensions for additional profile fields." +msgstr "" + +#. TRANS: Link text on user profile page leading to extended profile page. +msgid "More details..." +msgstr "" + +#. TRANS: Title for extended profile entry deletion dialog. +msgid "Confirmation Required" +msgstr "" + +#. TRANS: Confirmation text for extended profile entry deletion dialog. +msgid "Really delete this entry?" +msgstr "" + +#. TRANS: Value between parentheses (phone number, website, or IM address). +#, php-format +msgid "(%s)" +msgstr "" + +#. 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 "Compañía" + +#. TRANS: Field label in extended profile (when did one start a position or education). +msgid "Start" +msgstr "Inicio" + +#. TRANS: Field label in extended profile (when did one end a position or education). +msgid "End" +msgstr "Fin" + +#. TRANS: Field value in experience area of extended profile (one still holds a position). +msgid "(Current)" +msgstr "(Actual)" + +#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). +msgid "Current" +msgstr "Actual" + +#. 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 "Institución" + +#. TRANS: Field label in extended profile for specifying an academic degree. +msgid "Degree" +msgstr "Diploma" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +msgid "Description" +msgstr "Descripción" + +#. TRANS: Link description in extended profile page to add another profile element. +msgid "Add another item" +msgstr "Añadir otro elemento" + +#. TRANS: Field label for undefined field in extended profile. +#, php-format +msgid "TYPE: %s" +msgstr "TYPE : %s" + +#. TRANS: Button text for saving extended profile properties. +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: . +#. TRANS: Button title for saving extended profile properties. +msgid "Save details" +msgstr "Guardar los detalles" + +#. TRANS: Field label for extended profile properties. +msgid "Phone" +msgstr "" + +#. TRANS: Field label for extended profile properties (Instant Messaging). +msgid "IM" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Website" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Employer" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Personal" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Full name" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Title" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Manager" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Location" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Bio" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Tags" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Contact" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Birthday" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Spouse's name" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Kids' names" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Work experience" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Education" +msgstr "Educación" diff --git a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po index 5e0f801da6..03d60d516c 100644 --- a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index facd5af44d..7c358aa6f9 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po index ee92d157e9..129203b469 100644 --- a/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/gl/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 3e6b7b31fe..2c710ae10e 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po index 3a0f974570..664a64eb0a 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index ea5ff17dd4..e0a2c4b57d 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 40c62b6d88..2582d06978 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/pl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/pl/LC_MESSAGES/ExtendedProfile.po new file mode 100644 index 0000000000..82341c7cf5 --- /dev/null +++ b/plugins/ExtendedProfile/locale/pl/LC_MESSAGES/ExtendedProfile.po @@ -0,0 +1,229 @@ +# Translation of StatusNet - ExtendedProfile to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:15+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: Title for extended profile settings. +msgid "Extended profile settings" +msgstr "" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +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: Message given submitting a form with an unknown action. +msgid "Unexpected form submission." +msgstr "" + +#. TRANS: Success message after saving extended profile details. +msgid "Details saved." +msgstr "" + +#. TRANS: Exception thrown when no date was entered in a required date field. +#. TRANS: %s is the field name. +#, php-format +msgid "You must supply a date for \"%s\"." +msgstr "" + +#. 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 "" + +#. TRANS: Exception thrown when entering an invalid URL. +#. TRANS: %s is the invalid URL. +#, php-format +msgid "Invalid URL: %s." +msgstr "" + +#. TRANS: Server error displayed when a field could not be saved in the database. +msgid "Could not save profile details." +msgstr "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "" + +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "" + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Edit extended profile settings" +msgstr "" + +#. TRANS: Link text for link on user profile. +msgid "Edit" +msgstr "" + +#. TRANS: Plugin description. +msgid "UI extensions for additional profile fields." +msgstr "" + +#. TRANS: Link text on user profile page leading to extended profile page. +msgid "More details..." +msgstr "" + +#. TRANS: Title for extended profile entry deletion dialog. +msgid "Confirmation Required" +msgstr "" + +#. TRANS: Confirmation text for extended profile entry deletion dialog. +msgid "Really delete this entry?" +msgstr "" + +#. TRANS: Value between parentheses (phone number, website, or IM address). +#, php-format +msgid "(%s)" +msgstr "" + +#. 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 "" + +#. TRANS: Field label in extended profile (when did one start a position or education). +msgid "Start" +msgstr "" + +#. TRANS: Field label in extended profile (when did one end a position or education). +msgid "End" +msgstr "" + +#. TRANS: Field value in experience area of extended profile (one still holds a position). +msgid "(Current)" +msgstr "" + +#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). +msgid "Current" +msgstr "" + +#. 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 "" + +#. TRANS: Field label in extended profile for specifying an academic degree. +msgid "Degree" +msgstr "" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +msgid "Description" +msgstr "" + +#. TRANS: Link description in extended profile page to add another profile element. +msgid "Add another item" +msgstr "" + +#. TRANS: Field label for undefined field in extended profile. +#, php-format +msgid "TYPE: %s" +msgstr "" + +#. TRANS: Button text for saving extended profile properties. +msgctxt "BUTTON" +msgid "Save" +msgstr "Zapisz" + +#. TRANS: . +#. TRANS: Button title for saving extended profile properties. +msgid "Save details" +msgstr "Zapisz szczegóły" + +#. TRANS: Field label for extended profile properties. +msgid "Phone" +msgstr "Telefon" + +#. TRANS: Field label for extended profile properties (Instant Messaging). +msgid "IM" +msgstr "Komunikator" + +#. TRANS: Field label for extended profile properties. +msgid "Website" +msgstr "Strona internetowa" + +#. TRANS: Field label for extended profile properties. +msgid "Employer" +msgstr "Pracodawca" + +#. TRANS: Field label for extended profile properties. +msgid "Personal" +msgstr "Osobisty" + +#. TRANS: Field label for extended profile properties. +msgid "Full name" +msgstr "Imię i nazwisko" + +#. TRANS: Field label for extended profile properties. +msgid "Title" +msgstr "Tytuł" + +#. TRANS: Field label for extended profile properties. +msgid "Manager" +msgstr "Menadżer" + +#. TRANS: Field label for extended profile properties. +msgid "Location" +msgstr "Położenie" + +#. TRANS: Field label for extended profile properties. +msgid "Bio" +msgstr "Biografia" + +#. TRANS: Field label for extended profile properties. +msgid "Tags" +msgstr "Znaczniki" + +#. TRANS: Field label for extended profile properties. +msgid "Contact" +msgstr "Kontakt" + +#. TRANS: Field label for extended profile properties. +msgid "Birthday" +msgstr "Data urodzenia" + +#. TRANS: Field label for extended profile properties. +msgid "Spouse's name" +msgstr "Imię, nazwisko współmałżonka" + +#. TRANS: Field label for extended profile properties. +msgid "Kids' names" +msgstr "Imiona dzieci" + +#. TRANS: Field label for extended profile properties. +msgid "Work experience" +msgstr "Doświadczenie zawodowe" + +#. TRANS: Field label for extended profile properties. +msgid "Education" +msgstr "Wykształcenie" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 69f51f87fd..17f9800538 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index ee1e269276..e0054641fc 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:16+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 763030e1fe..06573911ff 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index 216081cf95..a31e0e3f9e 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index a714e7323f..7a0f6d6bc4 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:16+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index eeedca26e6..5676ad2c26 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 41586b2a63..8832579313 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -159,7 +158,7 @@ msgid "You have disconnected from Facebook." msgstr "Us heu desconnectat del Facebook." msgid "Unable to authenticate you with Facebook." -msgstr "" +msgstr "No s'ha pogut autenticar-vos amb el Facebook." #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 4828f5d593..b204921a89 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index 7ec2016fa6..b4a349c640 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index c81302da00..4a3dcbf724 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:17+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po index bcdb6c1eb1..d7b99fd75e 100644 --- a/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/gl/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index 4140538e77..ff175652d1 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 5966a99f5b..e42ccb737a 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:17+0000\n" "Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mg\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index e55ef23a96..30a8a8442a 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index d2440e0359..b6091fa098 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index 030418734f..a109b846e1 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 473f963a7d..5c9e0737df 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index eeb56dfad1..0a82848100 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po index c2060612d2..0e31574694 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 56d3373900..b2c57a1eea 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 04c27748e9..21ee7db1dc 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index e944e17bb6..e319731a06 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index b39e3e3f9a..bb5ca77eea 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po index 57cb801de8..176e1c8011 100644 --- a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 9d95872db6..8734f3f08a 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index fddbe4556a..8e0c978464 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 5c76b7be07..1c31aa6c01 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index 41c8e10f02..9c79abdde7 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index 21df2f99dd..31d9c50f16 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 46a3a100fa..39fd4f1189 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 883f41f9ff..4c448a0287 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 7e37cc889f..2e10833a89 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index d695990047..a6b25d9a36 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index b9a9d9ebe5..3b9f3d103e 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index cd4f3d45b1..ff7e578312 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index 6a53a12099..3bc318978b 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po index 991cf2dcd9..f9f0afa671 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:19+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po index 6f3092bfcf..5f787ec7f5 100644 --- a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:20+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 952b6c2e75..15b499deeb 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/es/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/es/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..43955591ce --- /dev/null +++ b/plugins/FollowEveryone/locale/es/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - FollowEveryone to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:20+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "" +"Los nuevos usuarios siguen a todos al registrarse y son seguidos a cambio." diff --git a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po index 60054c9313..0ce0752b8c 100644 --- a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index e96790caff..4f31742ca4 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index b765704da3..a840f92a91 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po index f283752092..49b116ddf4 100644 --- a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 19f9d863c3..10af12c89c 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 13a87c5868..3be5aa70dd 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 177bbd3b6e..7dedeb962d 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 09434b271f..c4de15f0bf 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/pl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pl/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..c5c2bc9058 --- /dev/null +++ b/plugins/FollowEveryone/locale/pl/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - FollowEveryone to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Obserwuj wszystkich" + +#. TRANS: Plugin description. +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Nowi użytkownicy obserwują wszystkich przy rejestracji i są również " +"obserwowani." diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 5fe5b8c4c9..15d5b45d40 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index d76294cb43..04044e9bfd 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index 11690a1c0f..653f4ab4c8 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 67dd246cd1..7f322ac290 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index 18f60cbd9e..8bdf4c4cda 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po index 914c20b0f0..db66a50878 100644 --- a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index c8cb03f1c2..a2fe0803d9 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 16e4c66aeb..45dd56cf0b 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 82568ea83d..c23aa799cb 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po index 3a2072f8d6..28308e8d67 100644 --- a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 42c0058c64..fc73a60063 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index c29fb9d539..6fccef769f 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 04a433d901..ed0fb10ff4 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index af25121fd8..a946bfa480 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 3cd4b5d8ab..aa06d57e4b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index 39043bb6e1..c251aa8ab4 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 409aa5d015..43811f097d 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 9ffab099b6..f2e64eb9be 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index c2ce8ffbb4..722320a730 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index fc1a4f24c5..e331044c6a 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index e6a3e268c2..332dd88328 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index f329f50c6f..7a71912023 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:24+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index e5d3cf87c7..4573145a3c 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po index 51193bd5be..8210eb227b 100644 --- a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index 49c39c9bef..e69d3cd923 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 4aced4c010..142c3eb7f4 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po index 6a4baa2b47..e48b49c554 100644 --- a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 7249cf6734..d2ceb046d5 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index f1b8996fb2..2751d19fdc 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 55aefae215..0d35dc942c 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index c9f5476409..a64376ac71 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index aaa31ca546..4b6b11b9f3 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 48616b5b20..80ccf8299b 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 45796cda07..e8023109eb 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index af46805a9f..4a98f876b0 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 51e21f0795..0f3c0bb055 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index fd5c6cf6d3..52ea33fd28 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index e9a948c288..911d14bc49 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 1470b19fb6..d5e64ac83f 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 0753ee7344..450632c66d 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index fa66e559e7..b7a452bc58 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index 2b3c3ecbb3..943ddf65d8 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Geonames to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ 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" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-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.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -24,22 +25,24 @@ msgstr "" #. 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 "" +"Omitiendo debido a recientes tiempos de espera excedidos por parte del " +"servicio 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 "Código de error HTTP %s ." #. TRANS: Exception thrown when a geo names service returns an empty body. msgid "Empty HTTP body in response." -msgstr "" +msgstr "Cuerpo de HTTP vacío en la respuesta." #. 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/eu/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po index 4f63e29791..1cf64659d7 100644 --- a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:11:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:23+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 (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 77205aba48..8e977be546 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index c83d9a3d3e..67e69dd2e4 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po index 1be0225f8c..99bc3ee7b0 100644 --- a/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/gl/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index a018966905..5332664baf 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index 10b45d9384..748006b4ab 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 5770a2b040..0775da1bac 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index ac46ccded4..5e2e065e73 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 5748e0753b..260987649a 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index e0cda6d275..79ba41ee3c 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 7104e352c7..9fc685477f 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po index f35c2817c7..93a6a0dcd5 100644 --- a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index be0ade6f1d..7b6bb39d5e 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index f6fe2a761b..8b87a33eb1 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index 636f2ff019..899b226128 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index fd0d64ca29..0a8958f2d9 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po index 7b7f90d28f..7b91e242b5 100644 --- a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:40+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 95823d30a0..481a746d0a 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 2c8f8759c0..d40f109dcd 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 0e6c5474ac..b7cd1945fd 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index f7ca1205b5..f53c2d529e 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 4c0b28319e..c3ec2e491f 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index f4bddcd04c..3482a89b30 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 8f1a20834f..59f74f35fd 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index b392642c30..2695b8d9ed 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 85ad098ed0..10cc9818d2 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po index 232c56826e..5b51430340 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:26+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 3012339f26..065ff74030 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 904e099804..bd1066b0d9 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 3bc2907fe6..b412c40a72 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index 5ca07812ac..fb0d880de6 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index ffc097b11a..c3cee57003 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 625d82edf7..d881cfc30b 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po index 19c20eb0be..afc328832d 100644 --- a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index ea4b576375..ace96b1f98 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po index 75557b7733..c09afb0f9d 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index 5fdd408477..1fc6f824da 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 0cd9d90912..0f7226cb2f 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 989f390137..c3400378d7 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 40d357498e..da8a5c17b6 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 8fdc2bf86d..767b093e9c 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index e12a910882..7ea1d52597 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po index 80b43e9765..face492d50 100644 --- a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:03:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index de62c9fcca..870db286c4 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index d413606e5f..e8d88f2aa0 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index e377b15ea4..ab75aaab60 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po index 4bc4df20a9..90ae192031 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index df26075e39..dc755daee2 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 0f84239aeb..aa2e0a3a26 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index e9f7b52878..cca629b1c9 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index a3f531e74b..c9887f98c9 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po index 61a2355691..4772358f25 100644 --- a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 3c0900c062..0bb58e3e20 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po index e2bef194cd..efbb77c35d 100644 --- a/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/gl/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:28+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:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 30c9f8a44e..b81a92d178 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 022cf8eedc..4d296031ae 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 8579ae57e4..cd4280ee81 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index fbbe147a23..fdd240e902 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 23b0d87362..549dc34e41 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:29+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 8ff9f331c3..e15e3ee4f6 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index a54718712f..8cd93fffe1 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po index a71f299b98..1220a22255 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:29+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index d5afded290..f4db423aea 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index eaa9bffcbc..8bb12ac085 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po index 665e85777f..c646bd4d1d 100644 --- a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 9f0f1209d5..32278b7872 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po index 1748abb248..527629ba8d 100644 --- a/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/gl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 1f2068f1ba..f906134f4c 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index 380112548d..2f4dc6f2c3 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 326f1ccd43..be0c14eec2 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index d0d9f482fa..c4ce443326 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:30+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index 47d0c29be6..3c563dd31d 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index ed97351c5a..ff7942d70b 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index feb895646f..9bac94fb35 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po index 5817a9bfba..31b0f218f7 100644 --- a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -47,7 +46,7 @@ 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 "" +msgstr "Cal especificar una freqüència de les enquestes (poll_frequency)." #. TRANS: Plugin description. msgid "" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 63c1c22e6d..3b0fa6b254 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/es/LC_MESSAGES/Imap.po b/plugins/Imap/locale/es/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..6f3b044acd --- /dev/null +++ b/plugins/Imap/locale/es/LC_MESSAGES/Imap.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Imap to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# Author: Peter17 +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:30+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "" +"ImapManager debe crearse utilizando su constructor, no utilizando el método " +"estático \"get()\"." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A mailbox must be specified." +msgstr "Debe especificarse un buzón." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A user must be specified." +msgstr "Debe especificar un usuario." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A password must be specified." +msgstr "Debe especificar una contraseña." + +#. 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 "Debe especificarse una poll_frequency (frecuencia de interrogación)." + +#. TRANS: Plugin description. +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"El complemento (plugin) IMAP permite a StatusNet comprobar un buzón de " +"correo POP o IMAP para el correo entrante que contenga entradas (post) de " +"usuario." diff --git a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po index 29825e0345..5a4307337a 100644 --- a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Imap to Basque (Euskara) # Exported from translatewiki.net # +# Author: An13sa # Author: Artsuaga # -- # This file is distributed under the same license as the StatusNet package. @@ -9,22 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:30+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: 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" +msgstr "Errorea" #. TRANS: Exception thrown when the ImapManager is used incorrectly in the code. msgid "" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 8ef4f07110..3ef1b79b88 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po index 1a019d87db..5f6094614b 100644 --- a/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/gl/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index a50931a979..c78680326b 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index ad1ab47201..8ce31efa17 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 92419aafe9..34d311e67c 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 717ccb21d9..31915e3bbe 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index bf92d9c019..2ed15355b1 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 624bfacc33..490bcab65a 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 6e53f06ea0..2e6c6e7be5 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index c30218db33..bafb6f7e37 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index 05f73a3b65..9dd626773e 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index d86fd3ff76..1505682026 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/es/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/es/LC_MESSAGES/InProcessCache.po new file mode 100644 index 0000000000..125641afb6 --- /dev/null +++ b/plugins/InProcessCache/locale/es/LC_MESSAGES/InProcessCache.po @@ -0,0 +1,23 @@ +# Translation of StatusNet - InProcessCache to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin dscription. +msgid "Additional in-process cache for plugins." +msgstr "Memoria caché adicional para los complementos (plugins)." diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 85d7725442..6f687ba8e6 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po index 53cfef97eb..e05575d693 100644 --- a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 736a9f2ec8..e38babc703 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 5be00bd649..4e9af4430a 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index f6a6344852..65830b5b94 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 9df7538b69..c16a980bfe 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index 1535e25b82..ba07a61ac4 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index cee94afb43..dd7968e0f4 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index f1ac597a0b..1433997176 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index 4177dbb9dc..9d691202f2 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index 4a9ff6dc97..4bd2567c14 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index ae5c4d57ed..55065ea1df 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 8eeb98b634..ce07c1a11f 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po index 3b8969c313..282dafa0ce 100644 --- a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index aef8cc6a09..9c51258382 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po index ff4b595dc4..94dd3645db 100644 --- a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index c7386ee0e2..c3fb71905d 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index d94fe71e21..4866020a33 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index d0d375c8f6..55b821a80d 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 71ff0368b3..f16ad0f227 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 704ca223c8..81057a78a9 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 779ea987b6..eb9dc16e71 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:47:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index a8e29c580b..21da550dc6 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index b9cce0c44f..c1de9a3ad0 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index b6d5de4f51..2d6695aa7a 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index 656c1c1a17..1e2281a7de 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 331ebe08d5..cb4fc7a335 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index f498f04451..d91fb7f8cd 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po index 1caccaca57..01be6d657c 100644 --- a/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ca/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index 75dfc49ad3..ce3802691d 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/es/LC_MESSAGES/Irc.po b/plugins/Irc/locale/es/LC_MESSAGES/Irc.po new file mode 100644 index 0000000000..ffac0e7be2 --- /dev/null +++ b/plugins/Irc/locale/es/LC_MESSAGES/Irc.po @@ -0,0 +1,84 @@ +# Translation of StatusNet - Irc to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Irc\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:33+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Service name for IRC. +msgid "IRC" +msgstr "IRC" + +#. TRANS: Body text for e-mail confirmation message for IRC. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the plugin display name ("IRC"), %4$s is the confirm address URL. +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" +"El usuario \"%1$s\" de %2$s ha dicho que su pseudónimo %3$s le pertenece. " +"Si eso es cierto, puede confirmarlo haciendo clic en esta dirección URL: %4" +"$s . (Si no puede hacer clic en esa dirección, cópiela y péguela en la " +"barra de direcciones del navegador). Si el usuario no es usted, o si no " +"pidió esta confirmación, simplemente ignore este mensaje." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a host." +msgstr "Debe especificar un servidor (host)." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a username." +msgstr "Debe especificar un nombre de usuario." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a \"real name\"." +msgstr "Debe especificar un \"nombre real\"." + +#. TRANS: Exception thrown when initialising the IRC plugin fails because of an incorrect configuration. +msgid "You must specify a nickname." +msgstr "Debe especificar un alias." + +#. TRANS: Plugin description. +msgid "" +"The IRC plugin allows users to send and receive notices over an IRC network." +msgstr "" +"El complemento (plugin) IRC permite a los usuarios enviar y recibir mensajes " +"mediante una red IRC." + +#. TRANS: Exception thrown when an IRC attempts count could not be updated. +#. TRANS: %d is the object ID for which the count could not be updated. +#, php-format +msgid "Could not increment attempts count for %d." +msgstr "No se pudo incrementar el número de intentos de %d." + +#. TRANS: Message given when using an unregistered IRC nickname. +msgid "Your nickname is not registered so IRC connectivity cannot be enabled." +msgstr "" +"Su pseudónimo (nickname) no está registrado, por lo que no se puede " +"habilitar la conectividad IRC." + +#. TRANS: Server error thrown on database error when deleting IRC nickname confirmation. +msgid "Could not delete confirmation." +msgstr "No se pudo eliminar la confirmación." + +#. TRANS: Server exception thrown when an IRC waiting queue item could not be added to the database. +msgid "Database error inserting IRC waiting queue item." +msgstr "" +"Error de base de datos al insertar un elemento en la cola de espera de IRC." diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index bbfe2a0a3c..0edec97b42 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po index 699953bc43..37eec895bd 100644 --- a/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/gl/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index f00dda5727..2131b0c058 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 0404c32089..ca21ccc4aa 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 5bf62ea06e..b0dcaae51c 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index ba69737978..e42e4b4624 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index fd1ea1f771..a2b34de166 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po index 628fd2b532..c22aed47a4 100644 --- a/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tr/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:34+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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 0d99c3f580..2284f6ca3e 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index 9585b39725..b91e188c8e 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index 655af8dc2d..e5ea9213db 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -1,6 +1,7 @@ # Translation of StatusNet - LdapAuthentication to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,31 +10,35 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-27 12:36+0000\n" -"PO-Revision-Date: 2011-04-27 12:37:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87008); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. msgid "You must specify a nickname attribute." -msgstr "" +msgstr "Debe especificar un atributo de pseudónimo (nickname)." #. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. msgid "" "If password_changeable is set, the password attribute and password_encoding " "must also be specified." msgstr "" +"Si \"password_changeable\" está definido, debe especificar el atributo de " +"contraseña (password) y de \"password_encoding\"." #. TRANS: Instructions for LDAP authentication. msgid "Do you have an LDAP account? Use your standard username and password." msgstr "" +"¿Tiene una cuenta LDAP? Utilice su nombre de usuario estándar y su " +"contraseña." #. TRANS: Plugin description. msgid "" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index ea4fc6a124..bafde5a702 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po index fa220409a7..608a06c9b3 100644 --- a/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/gl/LC_MESSAGES/LdapAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+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:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 5c12583af4..d397e9a5e7 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index 4b73971fd8..c169b8463b 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 07780cea24..0e7c408b03 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 75a8198332..84a5212555 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 5d4378a7d8..5025601d90 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index 1f2bdf5c5b..01d32f9f6c 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index 1e1b29114b..7c7224b77b 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -1,6 +1,7 @@ # Translation of StatusNet - LdapAuthorization to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-27 12:36+0000\n" -"PO-Revision-Date: 2011-04-27 12:37:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87008); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,10 +27,12 @@ msgid "" "provider_name must be set. Use the provider_name from the LDAP " "Authentication plugin." msgstr "" +"Debe definir el atributo provider_name. Utilice provider_name desde el " +"complemento (plugin) de autenticación LDAP." #. TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration. msgid "uniqueMember_attribute must be set." -msgstr "" +msgstr "Debe definir el atributo uniqueMember_attribute." #. TRANS: Plugin description. msgid "" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 1d5e94a68b..0ce4c9e7d2 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po index 669f9d00c3..fea1e75177 100644 --- a/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/gl/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+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:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index efdfd73e10..9e7498b2f3 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 1a26c794ef..8950b14bff 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index ead433c2fd..d3de136900 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 3a0f755e62..0c11cf0d64 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index dd6a2f1cd0..532bf746dd 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po index 18e7fa9849..dc0980cfb5 100644 --- a/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ca/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index 35d90bfc60..4102d82e59 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/es/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/es/LC_MESSAGES/LdapCommon.po new file mode 100644 index 0000000000..970a345998 --- /dev/null +++ b/plugins/LdapCommon/locale/es/LC_MESSAGES/LdapCommon.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - LdapCommon to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapCommon\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "A host must be specified." +msgstr "Debe especificarse un servidor (host)." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "\"basedn\" must be specified." +msgstr "Debe especificarse \"basedn\"." + +#. TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration. +msgid "The username attribute must be set." +msgstr "Debe establecer el atributo de nombre de usuario (username)." + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s" +msgstr "No se pudo conectar con el servidor LDAP: %s" + +#. TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not connect to LDAP server: %s." +msgstr "No se pudo conectar al servidor LDAP: %s." diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index fd054d2606..296d9524b8 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po index d553499872..b070882e4d 100644 --- a/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/gl/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index edab7ae790..63f950a9a7 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index 277b70ded2..8b7ef4ff50 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index 170e2c96fb..4931f26883 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index e85f5fe60d..508fac67e8 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index eb0f724165..16dee542b1 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po index a31955c99b..36850f245d 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 18b2b13336..5b551e0ea5 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/es/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/es/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..4d6b6f9cbb --- /dev/null +++ b/plugins/LilUrl/locale/es/LC_MESSAGES/LilUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LilUrl to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "Debe especificarse un serviceUrl." + +#. TRANS: Plugin description. +#. TRANS: %1$s is the service URL. +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilice el servicio de acortamiento de direcciones URL %1$s." diff --git a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po index 130217ab77..506fb4b6e4 100644 --- a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:36+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index bfbe8dbfd6..a93427f616 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po index 23280bb3bb..5908f5957e 100644 --- a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index a682169081..3887e95ce1 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 850524f867..21e55ea70b 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 4d201b3de4..b478c5ab00 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 96450125b7..985035a6d4 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index a544a7835c..a31f531427 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index f7234f74a8..40976eebfb 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index fbe34b1706..8baf5fa38e 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index c08fdffed7..8b6e747447 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index 266b12316b..7f8672d18d 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 798b53ffb3..88889c4a3f 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 0199543ba3..d6d064b3ea 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index 49c11ea2d3..dce3cf2906 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po index 8a3bebd6a8..6a3eb79828 100644 --- a/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ca/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index 9e0e97bd55..4075af3a7d 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/es/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/es/LC_MESSAGES/LinkPreview.po new file mode 100644 index 0000000000..00b9a6fa3c --- /dev/null +++ b/plugins/LinkPreview/locale/es/LC_MESSAGES/LinkPreview.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - LinkPreview to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LinkPreview\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "UI extension for previewing thumbnails from links." +msgstr "" +"Extensión de interfaz de usuario para la previsualización de miniaturas " +"desde los enlaces." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con su clave (token) de sesión. Inténtelo de nuevo, por " +"favor." + +#. TRANS: Client exception thrown when requesting a different format than JSON. +msgid "Invalid format; only JSON supported." +msgstr "Formato no válido; sólo JSON es compatible." + +#. TRANS: Client exception thrown when not providing a valid URL. +msgid "Invalid URL." +msgstr "La dirección URL no es válida" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index b03500d40c..32a7b7949c 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po index cd87672a07..69e377047f 100644 --- a/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/gl/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index b8ea73b245..452b391728 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index aeead4a3d5..fadfc3756e 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index c4ae5fa3d2..442f111e50 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index 975a5150d5..c05fe4f18d 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index 0a5487c6be..f0feda7f93 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index 0fd6cb7741..116b687171 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po index 816edf6d6a..66518c8b24 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index 4e2d423b68..4b121b3513 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 21332eb4a5..5083b8953c 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 532ea1d963..959d9b9988 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Linkback to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,7 +26,7 @@ msgstr "" #. TRANS: %1$s is a profile nickname, %2$s is a timestamp. #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "Estado de %1$s en %2$s" #. TRANS: Plugin description. msgid "" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 6592b66abe..4ca5c397a9 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index f9ae0e0a7d..6f6ab2550b 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po index 6edb5d8086..cf68f0e6a0 100644 --- a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 87b11fb6e6..e23e81005f 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index e701e0a680..19c27f44d3 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 310744b132..9a056d6fa8 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 5364d774dc..aa1d7b8091 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index c982e196d6..b8c30aa30c 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:38+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 64b512ead3..6a8bf63b79 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index d64ea3a071..12f228a3e5 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 22127c4ab7..a9f43a0514 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 1ffd18be09..f6c75d9989 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index a5cdcce801..bf043410d8 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index c9875f55e8..53d3391a48 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 1703750e79..ee8230f214 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/es/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/es/LC_MESSAGES/LogFilter.po new file mode 100644 index 0000000000..2825f0581c --- /dev/null +++ b/plugins/LogFilter/locale/es/LC_MESSAGES/LogFilter.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - LogFilter to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:39+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 la configuración de servidor para filtrar el registro de salida " +"por tipo o palabra clave." diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index a0e22a980b..eeffdec6d4 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:39+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index ae53a83a33..23995e9e63 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po index bd8aab51e9..c2ba1c5289 100644 --- a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 72e4614ce8..7a039ad759 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 151e39dc96..52c9b0d131 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index d2a7407bec..b47c6070e0 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index 2705aefeaa..f8174a33e4 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index a1124a173a..5c4c68d735 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index 576a441a11..e1b2cce594 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index 8c823cdf58..d182c8bbc8 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index d1b0beff5c..bebc5fe58c 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 0de7d89176..624e654738 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 849bbf3d19..666c9d6e1c 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index bab0006ee3..cbd07c4ba9 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 540e6f5486..9bad422b2f 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/es/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/es/LC_MESSAGES/Mapstraction.po index 26c996a5cf..87be4cb6d8 100644 --- a/plugins/Mapstraction/locale/es/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/es/LC_MESSAGES/Mapstraction.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Mapstraction to Spanish (Español) -# Expored from translatewiki.net +# Exported from translatewiki.net # +# Author: Armando-Martin # Author: Locos epraix # Author: Peter17 # -- @@ -10,56 +11,56 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:40:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); 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:30+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: MapstractionPlugin.php:187 +#. TRANS: Header for Map widget that displays a map with geodata for notices. msgid "Map" msgstr "Mapa" #. TRANS: Clickable item to allow opening the map in full size. -#: MapstractionPlugin.php:199 msgid "Full size" -msgstr "" +msgstr "Tamaño completo" -#: MapstractionPlugin.php:211 +#. TRANS: Plugin description. msgid "" "Show maps of users' and friends' notices with Mapstraction." msgstr "" - -#: map.php:72 -msgid "No such user." -msgstr "" - -#: map.php:79 -msgid "User has no profile." -msgstr "Usuario no tiene perfil." +"Mostrar mapas de las notas de los usuarios y amigos con Mapstraction." #. TRANS: Page title. #. TRANS: %s is a user nickname. -#: allmap.php:69 #, php-format msgid "%s friends map" -msgstr "" +msgstr "Mapa de los amigos de %s" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#: allmap.php:75 #, php-format msgid "%1$s friends map, page %2$d" -msgstr "" +msgstr "Mapa de los amigos de %1$s, página %2$d" -#: usermap.php:68 +#. TRANS: Client error displayed when referring to a non-existing user. +msgid "No such user." +msgstr "No existe ese usuario." + +#. TRANS: Error message displayed when referring to a user without a profile. +msgid "User has no profile." +msgstr "Usuario no tiene perfil." + +#. TRANS: Title for map widget. +#. TRANS: %s is a user name. #, php-format -msgid "%s map, page %d" -msgstr "" +msgid "%s map" +msgstr "Mapa de %s" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 7a9450ce08..7278cb7d57 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:40+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 83a6a2c76b..522c1290af 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 6e7cc73a72..e2d1f28d87 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:40+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 278164501e..19f3ead518 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index 8d907df8ae..2ef793552b 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index cd7a67c21e..190110b312 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index 9dc8803a1d..d620a7e47b 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 900287c96a..2b1d2a552a 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index f55299293d..38ae01908d 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 72fb35da1c..6bb19bddce 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 8c4654dc41..a62d230c7f 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index 4739285ebc..0a0c23e30f 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index cd39767988..794d78c598 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index b5b1dd8ed3..eafbb20129 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 4f7affca83..2d91d7d814 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index bc21952a7e..9552a226fc 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 9ff95e6d9d..71c85fb064 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index 80605b638f..2ebf7fed7a 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index b1bb741e81..0dca30b5b9 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:41+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index f1827fb433..b9e481621c 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 9fe72451e7..873e3805e8 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po index 75efb9a8ff..252cd2a51d 100644 --- a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 74261a4b3b..6b090bb32a 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index b275c6e79d..462db4fdd4 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 1a7e90c3ba..9612f72e86 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index d436157ccf..44ba0051b3 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 50c3cce19b..43c45e835e 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index 7f24696b53..36012e1d85 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index eda2f35be6..9df256c6a8 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index f086c21f03..730edb7ce6 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po index 191873b721..7696f69468 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:42+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 1d47739bb7..5daf4f9083 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 091a0dffc2..8aa23fceb6 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 92a33323f0..3f40db2a4b 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index 8895792390..43608a6104 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index feba5c57e8..b5e251577b 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 79eb4bebb4..801127a1d1 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 1290bb7910..b9b68521a5 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po index 944aef16ad..bae5fbb61f 100644 --- a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 4b9af6f38c..76cb213cc0 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index b0b763ee4a..ac4ace663d 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index 9868c13c12..ab98515333 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:43+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index 8c1c6b65c4..495a09a0f6 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index ae9ab47696..ba2833c109 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index ddc44911ed..e81b5c1f03 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:43+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 3f2d72122b..c45eab2ee3 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index c3190c4da3..34eb38781c 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index af4db2f099..d8d35ca8ad 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po index ab73545b64..674128ff1d 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index eeb2bac177..36193673ed 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index c173f3bc79..aeab81e076 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index cdba5983f9..b9875af3e9 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index 3877dd3cbe..92ebb3c86f 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/es/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/es/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..c9224f3cb8 --- /dev/null +++ b/plugins/Meteor/locale/es/LC_MESSAGES/Meteor.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - Meteor to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#, php-format +msgid "Could not connect to %1$s on %2$s." +msgstr "No se pudo conectar a %1$s en %2$s ." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#, php-format +msgid "Error adding meteor message \"%s\"." +msgstr "Error al agregar un mensaje de Meteor \"%s\"." + +#. TRANS: Plugin description. +msgid "Plugin to do \"real time\" updates using Meteor." +msgstr "" +"Complemento (plugin) para hacer actualizaciones en \"tiempo real\" mediante " +"Meteor." diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 34284bc8e9..4fbb82d4f4 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po index 43792ad0c8..412c925504 100644 --- a/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/gl/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 41e076fb28..bd1f752630 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 6f0338c05f..5a8c369e3b 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 75feb14867..8b200963be 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:44+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 7c3879207d..327b240580 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 150a7e442d..6e1e713936 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 3cbcba2c4f..55f95d4388 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index b69ff7d690..01672997a7 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/es/LC_MESSAGES/Minify.po b/plugins/Minify/locale/es/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..51d05d395a --- /dev/null +++ b/plugins/Minify/locale/es/LC_MESSAGES/Minify.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - Minify to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:45+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"El complemento (plugin) Minify minimiza los archivos CSS y JavaScript de " +"StatusNet, quitando espacios en blanco y comentarios." + +#. TRANS: Client error displayed when not providing a valid path in parameter "f". +msgid "The parameter \"f\" is not a valid path." +msgstr "El parámetro \"f\" no es una ruta válida." + +#. TRANS: Client error displayed when not providing parameter "f". +msgid "The parameter \"f\" is required but missing." +msgstr "El parámetro \"f\" es necesario, pero no existe." + +#. TRANS: Client error displayed when trying to minify an unsupported file type. +msgid "File type not supported." +msgstr "Tipo de archivo no soportado." diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index e5387536e7..026823da5d 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po index b84d6849fd..2685c043ff 100644 --- a/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/gl/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 3e33b7fd8c..a243ecb2e5 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index e47d6d74fd..e12bd90cdf 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 2841da3313..5717278520 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index 3b4c082253..c658d730f8 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 498ce6d825..53d58d0770 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 5bd07a2ab7..f4ebf5fced 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index a8b9bb0ca2..ee2373e75e 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 70f8769b73..d3eec2f765 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 960edbfdb3..e38550b6a1 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 1ec8901598..d483e32169 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 3e827a202e..4502785e73 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index f734f45ebb..f093a1339d 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po index 090f1b1901..4e6872b527 100644 --- a/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/es/LC_MESSAGES/MobileProfile.po @@ -1,6 +1,7 @@ # Translation of StatusNet - MobileProfile to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Fitoschido # -- # This file is distributed under the same license as the StatusNet package. @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -36,4 +36,4 @@ msgstr "Cambiar al formato para móviles del sitio." #. TRANS: Plugin description. msgid "XHTML MobileProfile output for supporting user agents." -msgstr "" +msgstr "Salida XHTML MobileProfile para apoyar a los agentes de usuario." diff --git a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po index bc2726d49f..2654c4e038 100644 --- a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 3f56c2c285..316e6bbb4e 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index cf3588e6b2..c9333ec2bc 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index 0299448cf9..b8c6727f6d 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 5655b382b5..da81600f20 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 22761f8fe6..c74f230e42 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index 958afff8c6..73c8eae60f 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 2b017ff938..000677d932 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 9f5fd8d00f..a640c25552 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index c6eb022531..2d8efb3d6b 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 6fab88ec65..ddf5ba9064 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index d1d89597e7..ed09f6e6f8 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index e73c32692c..9c5e87c548 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index 208933e832..4337c80ed3 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index ebe11d28ab..8791163ec7 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 5d77221557..fe0e5cd243 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po index 4887d2415b..287a91d24c 100644 --- a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index ce3e0fe952..7ab055a470 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index c26e55efa0..1a2610f057 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index dd58dc3815..f55b039d0c 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index f90b846a59..2ea5f77c18 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index 54f54a9afe..8c4d96da68 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 20f8446379..c41b6c8a7e 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index 83646fa3ff..b768546cbc 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 80c1546126..daf88404bd 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:04:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po index 7e5e8fffb9..492d174dac 100644 --- a/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 36c67c136e..511e232a5b 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/es/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/es/LC_MESSAGES/ModPlus.po new file mode 100644 index 0000000000..0213e0e768 --- /dev/null +++ b/plugins/ModPlus/locale/es/LC_MESSAGES/ModPlus.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - ModPlus to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:47+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "El usuario no tiene ningún 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 en %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 "" +"Este perfil remoto está registrado en otro sitio; Consulte [la página del " +"perfil original de %1$s en %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 "" +"Los moderadores del sitio han silenciado este perfil, lo que impide el envío " +"de nuevos mensajes a los usuarios de este sitio." + +#. TRANS: Plugin description. +msgid "UI extension for profile moderation actions." +msgstr "" +"Extensión de interfaz de usuario para las acciones de moderación de los " +"perfiles." + +#. TRANS: Label for access to remote profile options. +msgid "Remote profile options..." +msgstr "Opciones de perfil remoto..." diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index 4b704af17e..521f51d149 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po index 1f41f93606..3c8ba2a4a0 100644 --- a/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/gl/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 4517b23bdb..b655eae246 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index 3608907c77..2213d21def 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 76ffe94bad..7dd556595c 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index 94e3ca02f2..56277dcf2c 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index 6bd36768ed..21bc06b76c 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po index fb9b48651a..97eb5462cd 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index 53a02e2dde..882700009b 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/es/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/es/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..e008b6b05b --- /dev/null +++ b/plugins/Mollom/locale/es/LC_MESSAGES/Mollom.po @@ -0,0 +1,23 @@ +# Translation of StatusNet - Mollom to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:48+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index 6cf05f1c38..ac7c8f0981 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po index 9441747110..72d6a3c827 100644 --- a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index 5770aeebbb..c265aa0f9a 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index 0a0d38dd18..3e72b3f55d 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index 6afb5cc531..2373e03105 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index 142c4f7d77..8d7524db81 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po index 03709f605c..4e9380f58c 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index 2f0489d765..0d191ad141 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index eff7c1b83e..c9ca7623ed 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po index 8f4459dc11..75ae38ddd3 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po index 9c619d2f16..005c1383d2 100644 --- a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -32,7 +31,7 @@ msgstr "" #. TRANS: Display name of the MSN instant messaging service. msgid "MSN" -msgstr "" +msgstr "MSN" #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a user." diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 634452ecf7..0f33ed6947 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/es/LC_MESSAGES/Msn.po b/plugins/Msn/locale/es/LC_MESSAGES/Msn.po index 168ac299af..42006fa905 100644 --- a/plugins/Msn/locale/es/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/es/LC_MESSAGES/Msn.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Msn to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Od1n # -- # This file is distributed under the same license as the StatusNet package. @@ -9,25 +10,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-27 12:36+0000\n" -"PO-Revision-Date: 2011-04-27 12:37:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87008); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\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 "" +msgstr "Envíeme un mensaje para publicar una nota" #. 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 "" +msgstr "Error en la base de datos al insertar un elemento en la cola." #. TRANS: Display name of the MSN instant messaging service. msgid "MSN" @@ -35,17 +36,19 @@ msgstr "MSN" #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a user." -msgstr "" +msgstr "Debe especificar un usuario." #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a password." -msgstr "" +msgstr "Debe especificar una contraseña." #. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. msgid "Must specify a nickname." -msgstr "" +msgstr "Debe especificar un alias." #. TRANS: Plugin description. msgid "" "The MSN plugin allows users to send and receive notices over the MSN network." msgstr "" +"El complemento (plugin) MSN permite a los usuarios enviar y recibir mensajes " +"mediante una red MSN." diff --git a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po index 4bcf59bb82..049e585228 100644 --- a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index c8292581fa..e412ddf203 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:13:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po index 280e402e5b..7c66d10891 100644 --- a/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/gl/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 857f108cf0..9c147268ee 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 11c6368fd4..59df50d82e 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index b555be981a..f6f1ed76cd 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index f4eef1e1dc..59b16c336a 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 9b19890c7a..f2e2ebca5a 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 58321bff51..168133489e 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index ea93a020c2..2e99decfe3 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 2f19f1c77d..fe389f46ad 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po index 53075494ce..ebcdf5b098 100644 --- a/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ca/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 794502c364..edf530beb8 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/es/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/es/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..3bb7e147b8 --- /dev/null +++ b/plugins/NoticeTitle/locale/es/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - NoticeTitle to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Adds optional titles to notices." +msgstr "Agrega títulos opcionales a las notas." + +#. 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] "" +"El título de la nota es demasiado largo (el máximo es %d carácter). " +msgstr[1] "" +"El título del aviso es demasiado largo (el máximo son %d caracteres)." + +#. 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/eu/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po index 1b85b301b1..13658f1e00 100644 --- a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:49+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index f81adfee1f..000a7c3bc2 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po index 7357fcdbd6..f06a8d21c0 100644 --- a/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/gl/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index ddba82e776..daa223fc81 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 49c72d95ca..c6a3a9bb59 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 6d6daafb66..8b9562638a 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index d5a516be84..3986d8a4fa 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index 33d89c864f..4923121e38 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 7827cadb53..a080a762ef 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 54f870c812..0d9fcfa347 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index 9201cdf3f2..8bef84cd80 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 8627b45f6d..920657829f 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index c6d6ee681c..03200f5f2e 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po index 455c04cab4..8620718800 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po index f322a68180..c60a9bea6e 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po index 2b46dbb627..86a30d0be6 100644 --- a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/es/LC_MESSAGES/OMB.po b/plugins/OMB/locale/es/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..fe12cd3db9 --- /dev/null +++ b/plugins/OMB/locale/es/LC_MESSAGES/OMB.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - OMB to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "Suscribirse" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Aceptar" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Rechazar" + +#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "No es posible suscribirse a un perfil remoto OMB 0.1 con esta acción." + +#. 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 "No puede listar un perfil remoto OMB 0.1 con esta acción." + +#. 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 "No puede (des)listar un perfil remoto OMB 0.1 con esta acción." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "No se pudo eliminar el token de suscripción OMB." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un complemento (plugin) de ejemplo para mostrar los principios básicos de " +"desarrollo a los nuevos programadores." diff --git a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po index 5d1b5322b3..005ed7044d 100644 --- a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:50+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po index 03ad2c92a3..7ac2d0538e 100644 --- a/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/fr/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po index f928b9077f..cc29c72b75 100644 --- a/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/gl/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index a5f4677534..e8b7ba48da 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po index 90af0638ca..b9a44de856 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po index 3f198d015f..fac2602d97 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:11:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-omb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po index fc24966e7e..ab8d808b1e 100644 --- a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -180,9 +179,8 @@ 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. -#, fuzzy msgid "Unlike" -msgstr "A diferència de" +msgstr "Desagrada" #. 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. diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 0a9ac13a82..5af0a83a95 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:14:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 0ee3fab843..8a465f92e2 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -14,15 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po index a3df34b1c8..0160358c9d 100644 --- a/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index e7859d8142..dc0c4c1ff9 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:53+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -281,7 +280,7 @@ msgstr "Listar %s" #. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" -msgstr "Ir" +msgstr "Va" #. TRANS: Field label. msgid "User nickname" diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 64c4f83858..55746d190f 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:56+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 92e51e50a6..339869575e 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 97fcbc39a3..887e1113e4 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index aec47170bf..040cb292de 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 97c8562b79..5169621143 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:49:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index 5edf23113d..9b94416c10 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index 385fffe141..b465bf8d8a 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index a21e0596eb..184530cd6b 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 17ed1d5d30..1a88ed1a59 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 3fc45e03d3..f2d5db038e 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po index 89504ca820..aa223c9edc 100644 --- a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 82445a83c8..7a107d536c 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 45c030ded9..c53fd308c2 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 257c96c626..7b9513271d 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index a2a6a77b62..5cd7cfcd96 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:48:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:51+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 9d1e5539c9..ea316d124b 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 3cc6581b45..0c9b4e7353 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:16+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 92c2c01095..da95fcd962 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index 36a248eb76..cd0a49a805 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index cab13818ee..241c2ed1de 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index bd38df0c68..275d779d75 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,16 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:17+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index b5920b1754..ccaad42129 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:52+0000\n" "Language-Team: Arabic \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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 869796d5ac..c9db1f4ee6 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 765fa667e4..b6ae011668 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -17,15 +17,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po index 66c04d48c1..001f18e518 100644 --- a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:52+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index f069600a15..d2899f1321 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -411,7 +410,6 @@ msgid "Invalid team name. Maximum length is 255 characters." msgstr "Nom d’équipe invalide. La taille maximale est de 255 caractères." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Trusted provider" msgstr "Fournisseur de confiance" diff --git a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po index 706a33f572..4a862ebb2d 100644 --- a/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/gl/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 377258415b..3af394e849 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index 74e4dbbe91..1b30416458 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:53+0000\n" "Language-Team: Korean \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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 25d437810b..bd3ab09afa 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index f25a887305..e76fefca6f 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:53+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -19,9 +19,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 22b9b95bd4..4d9f66c3b4 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:53+0000\n" "Language-Team: Swedish \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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 36049593fa..8bc88eae4f 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 5403e175d0..6f0b0e3cb6 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-10-10 14:11:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index 12d6874e7a..2c94add9e3 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:32+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index 05b40be966..c1b8b3b59a 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index f3527e92fd..b2baf958f4 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po index 0c2e5f7731..8f51c86371 100644 --- a/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/gl/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 15d3641901..e581c7083e 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 896a6259f7..395b29240e 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index e9f57539b9..3394973f77 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index 39573f03be..63e160a728 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index f782c8a422..b48b3dc3e2 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-12-03 13:48:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po index 3d7961024b..714d6f1eda 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/es/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/es/LC_MESSAGES/Orbited.po new file mode 100644 index 0000000000..3c2ba7927f --- /dev/null +++ b/plugins/Orbited/locale/es/LC_MESSAGES/Orbited.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Orbited to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:54+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "Error al conectar con el servidor de la cola de espera." + +#. TRANS: Plugin description. +msgid "Plugin to make updates using Orbited and STOMP." +msgstr "" +"Complemento (plugin) para hacer actualizaciones mediante Orbited y STOMP." diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index 477d573835..f9a907aa2d 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po index d0bc1c46cd..11b9a94400 100644 --- a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:54+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index dbf10bfe84..d030e15aae 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index 564aa162a7..657b941c8a 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index 33abc88c76..53a7f4b8c1 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index dcfb824265..72cb66c618 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index 10938cc5bc..98d7fc863b 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index a7977241fb..df22adeedc 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 324951633a..6bfedd80c4 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 44da55f24d..c4bd2b995c 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po index a2371d61e3..d9635fe335 100644 --- a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index fde903911f..df23965f98 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 01214969f7..65d433c1dd 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index 107318815a..00aeae3302 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 39a580ce3c..d4b4f63449 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 441eeacaf6..6864b831ee 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:57+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 08679e9a13..c409d0370d 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index ab01cc3783..ccc3494a5e 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 90598a81fc..52e568a256 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:57+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 05785a9be6..5000af9247 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 794f2d1336..3b1228ff2f 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 8e498ea46f..531cc13e45 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po index dab06f7a28..7a95d54b78 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:58+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index 09ff0f41eb..3a4362b33d 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index 8224d25cab..84ccae9ed5 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po index 1d9efeec31..d544ed4c3f 100644 --- a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:05:59+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:58+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index 552cb49e54..a02e3b76fa 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po index cbee19cbd2..894b1cfadd 100644 --- a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:58+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po index 48342c7fbe..b3e0b8a840 100644 --- a/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/gl/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 5beb1143f2..e92b4dbc9d 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po index 173a601b35..ae61d6e156 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index f6d7671c6f..6432ce4487 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index b46d283067..3e5e5d5c6d 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:00+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 2479384cf3..6bf89cc975 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index a3908e37b5..dba6038562 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index 06ceac2bbf..c809c7dbf4 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index e304ad9ed6..ac4108d367 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 86ee3fe2bf..f69d51aa50 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:59+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 77535c06fb..ec46b2d1e9 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po index 8e320a995a..764ea858b2 100644 --- a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 4bd1350fd8..9edbc04721 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:01+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 345f29bbe2..20a0871d8e 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 534b97c177..1159cf678c 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 7a4e145174..9b725173a8 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:59+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index acc9e6cc01..e9680798d6 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index c650513639..b5ae5c4cec 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index db1f30af84..f1be5d27ca 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 33cf63a151..13d42df01a 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index 661de93df3..6f6ebbe3c5 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46:59+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index c86d87db6e..1620f2ae16 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index cc124937f4..4c08ef901f 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index c5f2996881..73ed54c2e2 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:02+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:46: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:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po index cf9fe4612a..3995608853 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 62cb742cf4..d6a99c662c 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 1322df476b..dba2cd1840 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index fb0924dd18..c52da33de6 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po index c3e5b09b56..26737b4694 100644 --- a/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - PoweredByStatusNet to Spanish (Español) -# Expored from translatewiki.net +# Exported from translatewiki.net # +# Author: Armando-Martin # Author: Peter17 # -- # This file is distributed under the same license as the StatusNet package. @@ -9,30 +10,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:43:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. -#: PoweredByStatusNetPlugin.php:51 -#, php-format -msgid "powered by %s" -msgstr "" +#. TRANS: Text output after site name. +msgid "powered by StatusNet" +msgstr "Desarrollado por StatusNet" -#: PoweredByStatusNetPlugin.php:53 -msgid "StatusNet" -msgstr "StatusNet" - -#: PoweredByStatusNetPlugin.php:66 +#. TRANS: Plugin description. msgid "" "Outputs \"powered by StatusNet\" after " "site name." msgstr "" +"Añade la frase \"desarrollado por StatusNet\" tras el nombre del sitio." diff --git a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po index b718f9ee49..af1a60af22 100644 --- a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 5583514af9..52453c199e 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index 0eb47f8691..2b8f586e65 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po index 94117ed10f..2011978abc 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 0ecb7bc5ac..b52679422a 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:03+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 0b1ad82de1..efc202052b 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 914c7bbc8e..f034412d02 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 14645d0154..0e68526683 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 357726fe52..6467eaba22 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index 051e0bb59b..5ed77ea601 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:00+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index a8c05e8d8f..2b14a9bcd7 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index baf2b96a13..cfc8657b42 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index afa2a06077..986deb702e 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po index c5db14bf4c..ae11664520 100644 --- a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 393d6e1d1a..224837821e 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 586f7699d1..b6c3a5111d 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -1,6 +1,7 @@ # Translation of StatusNet - PtitUrl to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -25,6 +25,8 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." msgstr "" +"Debe especificar un \"serviceUrl\" para el servicio \"ptit\" de acortamiento " +"de direcciones URL." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 2b26b04f86..9ac759576a 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index c056bb54c2..8990ade121 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 5c4dbc95f7..ae29a6289c 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 9946bac334..674b940b28 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 984c4c09ec..bbca2a2535 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index 1c7684dd2d..86d7f7a0d2 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 7c66677248..efe46bbd92 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Norwegian Bokmål \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index 767ade2f72..89ed5eb717 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 24e07f425d..9fc7ccb71e 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 018e60c803..315bd54e3d 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 4884f398d6..e79dd1d8a2 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 2a9cda3ea3..94d0d4881f 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 8a4546496f..54db9a10c2 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po index c4a6c250e7..f526bb13c0 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index 0431de4a3c..a38a223088 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po index 19ca93279f..fda418c224 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:01+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 4c14ca13a9..c1f4fb4a3d 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po index 12bdc0cf0d..d05dcaa9d5 100644 --- a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index c71502da76..2eedec43d1 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po index b26b651647..5eb6884e25 100644 --- a/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/gl/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index 7fe7f0c774..d4e2a7c0e2 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po index 8643c82e71..2fb9305125 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index ea540515d2..fc11edce0e 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index 6a21e07385..0f339fc7aa 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po index c5db31ec23..6adea29bef 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index 1e8c4aa2d1..a344bfc592 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index 1a6cc458a6..7c786f3b7b 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index 3fc7ace5a2..d84411603b 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:27+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index bfc46aec8f..2a22e88375 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po index 346a61dcf1..4a96e7d4cd 100644 --- a/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/gl/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index f91efcfb84..f9c2f139d9 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index c405cfdc9f..133e9a9d03 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index b9eb8bb398..bd39ee3b46 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index a2ad3a738a..776b79f667 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index bcdd03d464..fd9217cf69 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:28+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index db9826faf6..dd4e944e6a 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index a4a3e9d0c1..426c96fdcb 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 3b9b61372b..8c3ebc4b8a 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index be423f4253..d347144b26 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 49ac7848f3..a7284e1d08 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index f37cd947d3..141050a794 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po index a6d70192f5..6e9d5b1ceb 100644 --- a/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/gl/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index 02684b1db0..cf4350fef9 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 624a309ca6..f537eec8e6 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 1435e4be1e..5c00a415e0 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:48+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 00a1c88637..059a42a2de 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index 59ee87d45d..fa066d060f 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po index 945a3bfa5a..1d1f04b400 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index 49a86ea5ae..6d33244c4b 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index 8465b25537..47a68de955 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 9b4237ba37..ab8d9226e5 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index 74247d80c4..358d6b4d7b 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:15:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2012-01-02 10:10:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po index f72659a5b5..f3ad676b98 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index f87b51be85..5763bce777 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/es/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/es/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..2402a741f0 --- /dev/null +++ b/plugins/Recaptcha/locale/es/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - Recaptcha to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Field label. +msgid "Captcha" +msgstr "Verificador Captcha" + +#. TRANS: Error message displayed if a provided captcha response does not match. +msgid "Captcha does not match!" +msgstr "¡El código de verificación Captcha no coincide!" + +#. TRANS: Plugin description. +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Use el servicio Recaptcha para añadir " +"un código de verificación Captcha a la página de registro." diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 00c07ebeb2..2a15096fbe 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 4b83f9bda8..733169ab3f 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:03+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po index 0b36f5f7d3..7b1ecf28aa 100644 --- a/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/gl/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 1c643e8d61..d2fb58b592 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:18+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index b7dcd09c67..30a780f5a4 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 8e8413fef4..1bbc5f2e2d 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index ccb0fad979..fd10c9fd08 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po index f2c8ce7682..3914a3addd 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:04+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 409a43b9be..28ca42e67f 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index dc789c0a2d..951bb51ac0 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index 59912baa44..d0a94f1ea6 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index d7535bdaba..6461d3b551 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index a52f8fa920..cff3c62fd7 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:19+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po index 6e454be9ac..89b6ca5ff9 100644 --- a/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index c9ab096879..d768ee6c05 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -1,6 +1,7 @@ # Translation of StatusNet - RegisterThrottle to German (Deutsch) # Exported from translatewiki.net # +# Author: LWChris # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,22 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\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 "Kann IP-Addresse nicht finden." +msgstr "Kann IP-Adresse nicht finden." #. 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." diff --git a/plugins/RegisterThrottle/locale/es/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/es/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..f922329399 --- /dev/null +++ b/plugins/RegisterThrottle/locale/es/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - RegisterThrottle to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:04+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:49:00+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 se pudo encontrar la dirección 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 "Demasiados registros. Haga una pausa e inténtelo más tarde." + +#. 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 "Un usuario bloqueado se ha registrado desde esta dirección." + +#. TRANS: Plugin description. +msgid "Throttles excessive registration from a single IP address." +msgstr "Evita la excesiva creación de cuentas desde una misma dirección IP." diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index 77c861d79d..766c3a762c 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po index df8bba95df..feb94125ec 100644 --- a/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/gl/LC_MESSAGES/RegisterThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index bae6bcf069..dd0b680846 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 0be19c72e7..e1b8f4d3a8 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 7394ef512c..4d5185e360 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 7291818c03..86d7135e6e 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index e220487604..5b5c2e38bd 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po index 3c6ab5ef15..8556ab3465 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:22+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po index 7532662f5e..cd8c728a54 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po index 5f0b0d740e..a12d8bccad 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index e0e5efae20..6091df294a 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index b8e1925ad4..d682c1719a 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po index 68bd046f1f..c80a96e704 100644 --- a/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/gl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 1a00198b97..bba354a752 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 04df2d80aa..cfa5d2ba5f 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:23+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index 7f8770588f..aa9298230b 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po index 962152cc43..551cae629d 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index e43c73b940..b61b3a1a7f 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index c33ccb4be1..a35a128b5b 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index b794d71d61..afb73c142a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/es/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/es/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..e3bfc04c4d --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/es/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "" +"El complemento (plugin) Reverse Username Authentication permite a StatusNet " +"controlar la autenticación comprobando si la contraseña proporcionada es la " +"misma que el reverso del nombre de usuario." diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 233ef0b94d..4fde939c39 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:24+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po index 2dc8ccf48d..befbe47b92 100644 --- a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index ce4910d867..1be4f7b3ca 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 23c5c8da54..e343b8c31f 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 1e2adf7e6f..da626f47f2 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index eca2404a9a..4fba5d7481 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:05+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index c4bf47b630..7939be07fe 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index da5b72f5fe..a1bd858611 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index ca3401676e..2e6a972ce2 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:25+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index ffcb31ebca..eae2089d5e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index bebde9c68e..b4968b8c78 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 1dc3ae09bd..5ae3fe3e69 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index d5449380cd..c23ac038de 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 30c4436fe8..a4b374db74 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po index 93007733f5..87bae65e5c 100644 --- a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:12+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index 3fada167fa..48a9dd9b17 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 91af15ef57..c3f3fd154a 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 041a0864e3..33e0b37c09 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 426b990f59..4a6d08d4cf 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index d4e40e5a3e..9f6c022898 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index 7941008c27..0a95e9ccd3 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index 782f9b8041..eef851bd31 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index cd38633f67..0810087c3e 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:45+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po index f2b7508dc7..9de8daf16e 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index ea36c5a11f..b8ee2788f6 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po index 5271312d26..d1f4c56cad 100644 --- a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:13+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index 36e1bbfd2b..4433c18ee1 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index a7ad1602d7..3efd6599af 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index fe706dc83d..a2cdd274d2 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:13+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index e64abb5c35..deef53ba0e 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index 11e041586f..9b22978168 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index 0c11296e90..13b5cabab3 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index de31d19e0e..76a336e2be 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:46+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po index 3d65935031..9a57c75b0c 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index e505663db3..64d0474873 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 0f5e595439..3de6123943 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index 412ddcd1fb..5bf204779c 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:29+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 5a0139b6e6..cfbee2dfd7 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 20242fbdcd..4b5de2694d 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po index ebb00d3a34..da12bbe2af 100644 --- a/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/gl/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index 3a02fa84cf..90ab5995b6 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index e2962ba569..0ef5187bb6 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 83c6385361..7717f45068 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index d13dfb5d30..47c4833276 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index c30e07b177..3cbb7bfb21 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Deitsch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pdc\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index d085d3b459..3cf82a7d05 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index ea6513cc8d..b705397f1e 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index df63f8d248..badcce479f 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:30+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index 6878dfac80..03201b9f8c 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:31+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po index 0af8ca696c..7a0b4c438e 100644 --- a/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 11a900d572..531b948d35 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:33+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index 0284629708..75f92e8b88 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po index 74ab31dbc9..4a62155349 100644 --- a/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/gl/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:07+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index f6fad22681..56f52c6c3a 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 041fc215ca..58044722db 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 63da10be77..4624f752d6 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index ff32e1bb3e..1552908a2c 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index c6fc478fa5..746594e853 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:34+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index 6fa2a45e45..f2896dccf1 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:08+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index c95662239d..6bcf5db892 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:08+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index 31428297fd..b4e6ed0df0 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:08+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index 28938556a7..8ba4af8bcd 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:35+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index 1404a270ed..9594b241c4 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:08+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 3147e951ff..8acd18ef42 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po index 679a9a8621..702b2e0b8e 100644 --- a/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/gl/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index d0f238088f..eb07b0d4ea 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index aa3de71967..5626fc5b48 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index c52505f68d..c77179a87f 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po index 7e35aff498..d3bf74ef56 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:08+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 8b0a38d763..6864442707 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index 8715825996..bc8c89f7b2 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index 223cf092fa..f84a6f294d 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 76c065e959..6259e6ee1d 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:36+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:49:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index 0f0ece24d9..8cd9e9413b 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 247d1712e7..17b381f83a 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 327f5e66b7..da88483d5e 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -1,6 +1,7 @@ # Translation of StatusNet - SimpleUrl to Spanish (Español) # Exported from translatewiki.net # +# Author: Armando-Martin # Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. @@ -9,22 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "Debe especificar un \"serviceUrl\"." #. TRANS: Plugin description. #, php-format diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index c87cce1696..d797839900 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index fc054997d1..0b23a3c7fa 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:37+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index c12cec9357..6068298081 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 91c3c1922d..9c3693cdcc 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 68dcc8d3c2..fe4dc9cd68 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 24a21baa69..8c77c61730 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index bcdd2dab64..2babd33971 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 138db05553..7c9625c2e3 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:38+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index abce895bf4..eaf8dae71f 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index bdf04bb3bd..d229213379 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 046642d55f..e77b4d9f55 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index e73b297986..d9765342f7 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 0e1ad9b933..a3631041b5 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index 8e39c776c5..1a00d4d3c0 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:39+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 0011f45c32..61ec6a3f9b 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index 6f2e822ffc..e176974252 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 93650e7147..0f9a444f2b 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po index b39c25edea..9c0d334081 100644 --- a/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/gl/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index b0e409fe88..3e9e18601e 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index be4fa51d52..6fe4dd4120 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index a1a2956632..75220b8b06 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 0ac0efdbbf..920fdfd348 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:41+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 4727a08f95..2003367dbc 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 505231bfc7..433327d36e 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index c4ec4ad819..92ff451fb4 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/es/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/es/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..435fe19ade --- /dev/null +++ b/plugins/SlicedFavorites/locale/es/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SlicedFavorites to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# 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: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:10+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Muestra listas de notas populares para subconjuntos definidos de usuarios." + +#. TRANS: Client exception. +msgid "Unknown favorites slice." +msgstr "Sección de favoritos desconocida" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 2cd9f85e6b..35123168db 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po index c87eba906c..f25ace971e 100644 --- a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 9bd616f457..ce11d557f1 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index c9c1ac5ded..4fc31609d5 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index 54e9e3daac..0b5e75c8cd 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:42+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index dda2865612..56217a04ca 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 71120249b9..f99eb7cfe0 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index c5938e2d72..9bbb7e8b7d 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 4e2eb41ac3..c37455ca65 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index a77545daf9..e9d541c727 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index 58d77ed669..918722183c 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/es/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/es/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..d624b959ec --- /dev/null +++ b/plugins/SphinxSearch/locale/es/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - SphinxSearch to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:11+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception thrown when a database name cannot be identified. +msgid "Sphinx search could not identify database name." +msgstr "La búsqueda Sphinx nn pudo identificar el nombre de la base de datos." + +#. TRANS: Server exception. +msgid "Sphinx PHP extension must be installed." +msgstr "La extensión PHP Sphinx debe ser instalada." + +#. TRANS: Plugin description. +msgid "Plugin for Sphinx search backend." +msgstr "Complemento (plugin) para el motor de búsquedas Sphinx." diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index e82a52e982..f9db67535f 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po index 2044ad154b..956acf8896 100644 --- a/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/gl/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 34dbaeda39..a3d6b6bd22 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:43+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 29accbf436..1bc765e5f5 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 190d14a050..a2180f07a0 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 73d4ed7fb3..6fa59f4770 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index ee7dab2999..abccc32326 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 613e272f0d..3fc9ef7c3c 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po index 3c35b1d360..9c7e6c42ac 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/es/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/es/LC_MESSAGES/Spotify.po new file mode 100644 index 0000000000..5ad3ce861b --- /dev/null +++ b/plugins/Spotify/locale/es/LC_MESSAGES/Spotify.po @@ -0,0 +1,24 @@ +# Translation of StatusNet - Spotify to Spanish (Español) +# Exported from translatewiki.net +# +# Author: Armando-Martin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Spotify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:11+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Create pretty Spotify URLs." +msgstr "" +"Crear direcciones URL para Spotify." diff --git a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po index fc23be1d9d..324cc4daa9 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po index 060d301f0c..12c7f6d2b6 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po index 24769459b0..03756c0b50 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po index 23d2a9a501..41f31d087e 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po index eb54d103cd..480c110619 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po index 4a7556930d..05e13e9771 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:44+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po index 8065a085b0..42871eb43e 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index 77e0f93c65..dee6a791b8 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po index 679b04f776..f7a579686a 100644 --- a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index 0a3f575065..b85f4394e7 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 629de46511..1b0bf6b061 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 0ec7f2517b..780858eeb5 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 8267656b17..25e1212ac0 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index ef8e70f1d5..4589a6f5f2 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index b102b584f6..788cf8bf20 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index 398f412eca..d8868a5301 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:47+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po index 0c589a1458..db8ec1d111 100644 --- a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 44310e9805..8d58444e38 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:49+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 47592bb26b..e568f12e15 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po index b43dab2907..b85da1a7c1 100644 --- a/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/gl/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index dcb93e398f..9bb3f8db3a 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 947140c77d..38bf1ea68e 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index f099c0126e..188ab542da 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 3146eadfdd..a87d76e493 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 94e365dc88..7b827ddb55 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po index 53073b173e..344f4ba7f5 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:50+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 130e0ac145..542f6fd4f1 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index ef747bf6cb..0ab7c3c0f8 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po index f324136447..8e1103b624 100644 --- a/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/gl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index 70c04d50e7..b4430b8cb6 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index c8bc20f254..1e9a6c4ec3 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index 10b3613d5c..1a3dfde51e 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 39de8157e6..70f4d14aa0 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index 0e4b72f901..0b67b590ac 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 4b2c4aa656..ae85833e51 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 317447745b..c92eff3db0 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 0537cf5b17..2b9c91057f 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index f0c8f5b935..711024bd14 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 2cb9051b35..97a5c3b648 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:51+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index ee29a6d298..9e2b9719b9 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 554d9e511c..610086dffc 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index ff9992487b..4a1cdcb5c3 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index cf2f7d7c5b..57dee43788 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 701a6f72b1..abcf78bdb3 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 4c0558b55a..6e135ba610 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index eac6011cce..8fe74ff20e 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 5f53591efd..fa67c5add9 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index 80efbf2f70..e495e7eb11 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 29ef673df0..b1c500d47a 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 5e68c110ce..a3cc7a997f 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index f646ab24cd..9e9183f4d1 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:52+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po index 232531b92d..543e3e2e28 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index 5f1fbdac93..938e6564f4 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 96c7933a54..6f4add74d7 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po index b0711f4db7..9f4a309ab4 100644 --- a/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/gl/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:16+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index fee1458f14..ea5bc89905 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index b4b2f4e8ac..e958c4c163 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Bjankuloski06 +# Author: Rancher # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:54+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -33,7 +33,7 @@ msgstr "Откажи претплата" #. TRANS: Submit button title to unsubscribe from a tag. msgid "Unsubscribe from this tag." -msgstr "!Отпиши се од ознакава." +msgstr "Отпиши се од ознакава." #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index afec6d4787..d13aa0ee8f 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 7e83087646..3f9f558271 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:17+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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -33,7 +32,6 @@ msgid "Unsubscribe" msgstr "Одјави ме" #. TRANS: Submit button title to unsubscribe from a tag. -#, fuzzy msgid "Unsubscribe from this tag." msgstr "Одјави ме с ове ознаке" @@ -64,7 +62,6 @@ msgid "Subscribe" msgstr "Пријави ме" #. TRANS: Submit button title to subscribe to a tag. -#, fuzzy msgid "Subscribe to this tag." msgstr "Пријави ме на ову ознаку" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index 6ff07e2e96..3d193d8dee 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:17+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 96a8aadfd0..f20967d276 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index 4da8827ff2..02760c1094 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index c941890917..057f984a31 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:55+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 47e789048f..e98d461938 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index b904663321..c8895e4ecb 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index db382ae1c0..71c1e03210 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index d7e4fe6ce5..23dd8aa137 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 97c43e52e0..90916e4dab 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index ceca0b2f54..c3a84e8cb5 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 9c53e80ee8..a66c756902 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:17+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index b9d39b91b6..2157dad8b1 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index 79b2dea74e..cf54dee051 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index c6b0659077..4dcd6aad68 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index b6cbe622e4..a84d97990d 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index bfe7e77188..f01112fb98 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index 41f5054b7b..9b8078193a 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 6017814c92..886e3769f0 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:56+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 5f9f18755e..d1aa3bebd0 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 1e11c5938b..e2d91e2a32 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index 1558cfa7dd..55d1a612dc 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index b4c4cd372d..eeb529edc9 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 72427e3252..0fb099fc45 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:18+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 37b5ade5ae..8a588898f5 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 4d45ea7f8a..2cce896ae2 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po index 1b5eb00a39..07131442be 100644 --- a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 2aebc49870..a461d8663d 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 11ed1f5fb0..40dd89630d 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index f40e735686..6d01a7bca7 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 83ea79b992..8247b1fcb9 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index e963d79167..d6dea2af11 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index f21183c658..7cfd538fbb 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:46+0000\n" -"PO-Revision-Date: 2011-12-28 11:49:57+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index fc01494c4e..422483c7df 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 777dc42050..e087a584af 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 3d41f901a3..6f7ebc0046 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 49bac70c60..0644d178c4 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 665bece7fe..f0abab9bdb 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 75e564d009..29943087f5 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:06:58+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po index 3dca862ebf..9fc67b98e6 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:19+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 3b9b2f0a02..66c291b280 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:04+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:19+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 3bac472681..d7399fdef1 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -15,15 +15,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:18:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 1ed97398b9..40ddc5d515 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-20 18:05+0000\n" -"PO-Revision-Date: 2012-01-20 18:18:26+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r109611); Translate extension (2012-01-" -"13)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index ea74f7d27a..606a7f9fc6 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:19+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po index 70218701ab..5f7f59d979 100644 --- a/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/gl/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index aae328f313..a693de9540 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 1c9d06fa69..e1d5ae612f 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:20+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 397435d94b..cf7b05a64d 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index ccf33538d3..55fc1a59db 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:20+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index e60686be42..1e307bd6b7 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index 7311d7c6dd..f0bda4912a 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:05+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index d9843c0e5a..46757680db 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:20+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index c8389bc2b7..786a9de8fa 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index e19247a1cf..b8b1376807 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,16 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:06+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po index 0f58e15fae..a60efb774b 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 707f131279..23b5310f80 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index da8abac28e..40edadc1d1 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index a9b9fa3244..03c45fd42e 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:07+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po index eb9802f83d..d0c91ec69e 100644 --- a/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/gl/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index ab4f4ca798..796ee38c83 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 81bd2b8e8b..57e7f56a90 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -49,7 +48,7 @@ msgstr "Означи профил за преглед." #. TRANS: Form title for action on a profile. msgid "Clear" -msgstr "Отстрани" +msgstr "Исчисти" #. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 029ab38d03..866eaff033 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 00591f9832..c11774e923 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 65ceb16573..fdfe1acc0c 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index e3c77a4612..6a32d0c720 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index a3fcfa083e..59f1690f4d 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-12-03 13:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index eafd9e6775..2bc4ec6227 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 0d9242c26f..7e851ac8ce 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:08+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index d981838aac..0e8108f087 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index 6e2388f3cc..66fd2a4ea5 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:21+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 1ab3eca390..c5ba05eec6 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 6736855072..07bf6a7b3c 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 74e00160c7..2c91aba2b6 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index e34d2d04c1..10b3f1da3f 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 3e45961e00..113873fbcc 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 6d75a15282..31646d37f2 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 3810f987b1..38ce66d9be 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 18084669d2..930dea7f2f 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 0054ddcfd7..ea3b273d09 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index d26f165608..bfe24c2aa5 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index e8b2d8b1c2..80f757faa2 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:50:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 3d685df06e..125499127a 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 5046bbfff8..1d18856eaa 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 104ff3d120..ffeb94d87c 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:09+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 66d6fa1b1a..51d9db32b6 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index d7ee9200a7..e31de485a7 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 883bccd983..815ff8118a 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 7eaf8e682e..f734034027 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index 773e727f3c..5314741ab8 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po index afc34b1926..b35c2d22cb 100644 --- a/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/gl/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:10+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 23f7564949..8ee96d2871 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 1aed580ad6..84c86da3ce 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index b05656a604..3d484447de 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index d3daebcff5..48c424f807 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 59165f87b6..f96e22c804 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 470aab4874..802d1341d6 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:11+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po index 5a7b4706d7..da18af362b 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index d90407d839..45e1844bd5 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po index ef1e4a0089..4cb5e991ab 100644 --- a/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/gl/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 0016a9ef6c..aaa470ff9c 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index a69a2bac8b..9d960ed08f 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index 2c09c24719..a3918c2e76 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index d889ad9563..7fd4751287 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index 9709f7edc8..136d735492 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 7ab1fa882a..93cb591d6c 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 9cffa733ba..987ffe28fa 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index 52f127973a..c50623a592 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:12+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po index 812048fbc1..2a09267277 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:23+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index cf4c2091a5..f222169452 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index a788b77679..bafc8d317f 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index b08cd95c0c..cff0a4dbdd 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index 123e595807..fe7c3215eb 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 5d837d8ba9..a050069ee0 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 78d23bbaee..c6432d6f50 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index b9944b8847..d3819aefd0 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index f2ac863d87..f162762294 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 198f7861c9..e46b2befef 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index 8f609bad59..0b7548757b 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index c6f9c6af32..2d4bb84ad3 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:24+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 609ee8d1ee..f4764edc4b 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-28 11:45+0000\n" -"PO-Revision-Date: 2011-12-28 11:50:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r107479); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nb\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index fff1595e7c..0fe2d048e2 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/pl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pl/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..ea5b74f729 --- /dev/null +++ b/plugins/XCache/locale/pl/LC_MESSAGES/XCache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - XCache to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:24+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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 "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Używa zmiennej pamięci podręcznej XCache do buforowania wyników kwerendy." diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index bf850a1dcb..a7e946f87f 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:13+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index f80082e5b9..a647448328 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,16 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index aa17a67624..efe146c3b8 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 83424ec3ca..74c008f6cb 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 3a906bb134..9f82f23ce3 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:24+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 (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 5a18b768f1..064361fd01 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:14+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po index a80f01e091..a3465900a7 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po index b3d9a10d5f..b996d01cda 100644 --- a/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/gl/LC_MESSAGES/Xmpp.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 44b43aad3d..8f186bd0db 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 834acd3252..7a12b55e9b 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index 484cbae58d..7beac80932 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:01+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:15+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/pl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pl/LC_MESSAGES/Xmpp.po new file mode 100644 index 0000000000..2edf2e92a4 --- /dev/null +++ b/plugins/Xmpp/locale/pl/LC_MESSAGES/Xmpp.po @@ -0,0 +1,94 @@ +# Translation of StatusNet - Xmpp to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# Author: Woytecr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Xmpp\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:25+0000\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-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. +msgid "Send me a message to post a notice" +msgstr "Wyślij do mnie wiadomość dodania ogłoszenia" + +#. TRANS: Plugin display name. +msgid "XMPP/Jabber/GTalk" +msgstr "XMPP/Jabber/GTalk" + +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "Nieprawidłowy JID: zbyt wiele znaków @." + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "Nieprawidłowy JID: jest @ ale brak węzła" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "Nieprawidłowy JID: za długi węzeł." + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "Nieprawidłowy węzeł \"%s\" w JID." + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "Nieprawidłowy JID: za długa domena." + +#. 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 "Nieprawidłowa nazwa domeny \"%s\" w JID." + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "Nieprawidłowy zasób \"%s\" w JID." + +#. TRANS: Link description to notice in conversation. +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "Musisz określić serwer w konfiguracji." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "Należy określić port w konfiguracji." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "Należy określić użytkownika w konfiguracji." + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "Musisz określić hasło w konfiguracji." + +#. TRANS: Plugin description. +msgid "" +"The XMPP plugin allows users to send and receive notices over the XMPP/" +"Jabber network." +msgstr "" +"Wtyczka XMPP umożliwia użytkownikom wysyłanie i otrzymywanie powiadomień w " +"sieci XMPP/Jabber." diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index b1c4ce073c..16824092f3 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index ef4b7103f6..9a502996b4 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index d7f1139c2a..987d60594f 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 6df0542678..c13661ac4b 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index a3f22f4fe4..3d25a05f8c 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 5666b0f376..3e3edd9fbe 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index ed1ff05249..e58452163e 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:20+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/pl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/pl/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..10ccd50bca --- /dev/null +++ b/plugins/YammerImport/locale/pl/LC_MESSAGES/YammerImport.po @@ -0,0 +1,348 @@ +# Translation of StatusNet - YammerImport to Polish (Polski) +# Exported from translatewiki.net +# +# Author: BeginaFelicysym +# Author: Woytecr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47:25+0000\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-12-03 13:51:41+0000\n" +"X-Translation-Project: translatewiki.net \n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\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: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. +msgid "Connect to Yammer" +msgstr "Połączenie z Yammer" + +#. TRANS: Page title for Yammer import administration panel. +msgid "Yammer Import" +msgstr "Import Yammer" + +#. TRANS: Instructions for Yammer import administration panel. +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"To narzędzie importu Yammer nadal przechodzi badania i w niektórych " +"dziedzinach jest niekompletne. Obecnie są nie przenoszone subskrypcje " +"użytkownika i członkostwa w grupach; w przyszłości może to być obsługiwane w " +"importach wykonywanych przez administratorów zweryfikowanych po stronie " +"Yammer." + +#. TRANS: Error message about an import job being paused from the admin panel. +msgid "Paused from admin panel." +msgstr "Wstrzymane z panelu administratora." + +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "Nieprawidłowy POST" + +#. TRANS: Page title for Yammer import administration panel. +msgid "Yammer import" +msgstr "Import Yammer" + +#. TRANS: Menu item for Yammer import. +msgctxt "MENU" +msgid "Yammer" +msgstr "Yammer" + +#. TRANS: Menu item title for Yammer import. +msgid "Yammer import module." +msgstr "Moduł importu Yammer." + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" +"Niewłaściwy typ elementu wysłany do importu przetwarzanego użytkownika " +"Yammer." + +#. TRANS: Used as a prefix for the Yammer expertise field contents. +msgid "Expertise:" +msgstr "Ekspertyza:" + +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" +"Niewłaściwy typ elementu wysłany do importu przetwarzanej grupy Yammer." + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" +"Niewłaściwy typ elementu wysłany do importu przetwarzanej wiadomości Yammer." + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Nieprawidłowy adres URL awataru %s ." + +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Nie udało się pobrać awatara z %s ." + +#. TRANS: Button text for starting Yammer authentication. +msgctxt "BUTTON" +msgid "Start authentication" +msgstr "Początek uwierzytelnienia" + +#. TRANS: Button title for starting Yammer authentication. +msgid "Request authorization to connect to a Yammer account." +msgstr "Żądanie autoryzacji wejścia na konto Yammer." + +#. TRANS: Button text for starting changing a Yammer API key. +msgctxt "BUTTON" +msgid "Change API key" +msgstr "Zmiana klucza API" + +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. +msgid "Initialize" +msgstr "Inicjowanie" + +#. TRANS: "In progress" description. +msgid "No import running" +msgstr "" + +#. TRANS: "Complete" description for initialize state. +msgid "Initiated Yammer server connection..." +msgstr "Zanicjowano połączenie z serwerem Yammer..." + +#. TRANS: "In progress" description. +msgid "Awaiting authorization..." +msgstr "Oczekiwanie na autoryzacjię..." + +#. TRANS: "Complete" description for connect state. +msgid "Connected." +msgstr "Połączono." + +#. TRANS: Field label for a Yammer user import users step. +msgid "Import user accounts" +msgstr "Importuj konta użytkowników" + +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Field label for a Yammer group import step. +msgid "Import user groups" +msgstr "Importuj grupy użytkowników" + +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Field label for a Yammer import prepare notices step. +msgid "Prepare public notices for import" +msgstr "" + +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Field label for a Yammer import notices step. +msgid "Import public notices" +msgstr "" + +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: Field label for a Yammer import done step. +msgid "Done" +msgstr "Gotowe" + +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. +msgid "Import is complete!" +msgstr "Import zakończony!" + +#. TRANS: Fieldset legend. +msgid "Import status" +msgstr "Stan importu" + +#. TRANS: Progress bar status. +msgid "Waiting..." +msgstr "Oczekiwanie..." + +#. TRANS: Button text for resetting the import state. +msgid "Reset import state" +msgstr "Zresetuj stan importu" + +#. TRANS: Button text for pausing an import. +msgid "Pause import" +msgstr "Wstrzymaj import" + +#. TRANS: Error message. %s are the error details. +#, php-format +msgid "Encountered error \"%s\"." +msgstr "Wystąpił błąd \"%s\"." + +#. TRANS: Fieldset legend for a paused import. +msgid "Paused" +msgstr "Wstrzymano" + +#. TRANS: Button text for continuing a paused import. +msgid "Continue" +msgstr "Kontynuuj" + +#. TRANS: Button text for aborting a paused import. +msgid "Abort import" +msgstr "Przerwij import" + +#. TRANS: Form instructions. +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +#. TRANS: Link description for a link in an external Yammer system. +msgid "Open Yammer authentication window" +msgstr "" + +#. TRANS: Form instructions. +msgid "Copy the verification code you are given below:" +msgstr "" + +#. TRANS: Field label. +msgid "Verification code:" +msgstr "Kod weryfikacyjny:" + +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +msgctxt "BUTTON" +msgid "Continue" +msgstr "Kontynuuj" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +msgid "Save the verification code and begin import." +msgstr "Zapisz kod weryfikacji i rozpocznij import." + +#. TRANS: Form legend for adding details to connect to a remote Yammer API. +msgid "Yammer API registration" +msgstr "API rejestracji Yammer" + +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" + +#. TRANS: Link description to a Yammer application registration form. +msgid "Open Yammer application registration form" +msgstr "Otwórz formularz rejestracji aplikacji Yammer" + +#. TRANS: Instructions. +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +#. TRANS: Field label for a Yammer consumer key. +msgid "Consumer key:" +msgstr "" + +#. TRANS: Field label for a Yammer consumer secret. +msgid "Consumer secret:" +msgstr "" + +#. TRANS: Button text for saving a Yammer API registration. +msgctxt "BUTTON" +msgid "Save" +msgstr "Zapisz" + +#. TRANS: Button title for saving a Yammer API registration. +msgid "Save the entered consumer key and consumer secret." +msgstr "" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index 32419dd00d..a11470fd52 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index ec487df39d..c913d6e812 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 005260eed3..127fed2707 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-19 00:00+0000\n" -"PO-Revision-Date: 2011-12-19 00:07:21+0000\n" +"POT-Creation-Date: 2012-03-01 15:45+0000\n" +"PO-Revision-Date: 2012-03-01 15:47: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-12-03 13:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r106599); Translate extension (2011-10-" -"30)\n" -"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Generator: MediaWiki 1.20alpha (r112812); Translate 2012-02-26\n" +"X-Translation-Project: translatewiki.net \n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " From de7ad991f96e39a0565409dedfc168ccc4ee9098 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 5 Mar 2012 00:38:39 +0100 Subject: [PATCH 129/134] Consistency update. --- actions/profilesettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 667fea2cf4..38424ab7af 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -185,7 +185,7 @@ class ProfilesettingsAction extends SettingsAction $this->checkbox('autosubscribe', // TRANS: Checkbox label in form for profile settings. _('Automatically subscribe to whoever '. - 'subscribes to me (best for non-humans).'), + 'subscribes to me (best for non-humans)'), ($this->arg('autosubscribe')) ? $this->boolean('autosubscribe') : $user->autosubscribe); $this->elementEnd('li'); From 376a19f3c110de328365d4a0c124a504d1458c7b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 7 Mar 2012 15:04:49 -0600 Subject: [PATCH 130/134] Plugin::path() checks local/plugins/ first --- lib/plugin.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/plugin.php b/lib/plugin.php index 0e8c0a742d..a5424e06ca 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -159,7 +159,12 @@ class Plugin } if (empty($path)) { - $path = common_config('site', 'path') . '/plugins/'; + // XXX: extra stat(). + if (@file_exists(INSTALLDIR.'/local/plugins/'.$plugin.'/'.$relative)) { + $path = common_config('site', 'path') . '/local/plugins/'; + } else { + $path = common_config('site', 'path') . '/plugins/'; + } } if ($path[strlen($path)-1] != '/') { From 6e01db2c92cea0bf1fa1520c5a5e1d94cb4b42ce Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 7 Mar 2012 16:06:33 -0600 Subject: [PATCH 131/134] accessor for Widget's HTMLOutputter --- lib/widget.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/widget.php b/lib/widget.php index f9b7152559..d068dea0f0 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -80,6 +80,19 @@ class Widget { } + /** + * Get HTMLOutputter + * + * Return the HTMLOutputter for the widget. + * + * @return HTMLOutputter the output helper + */ + + function getOut() + { + return $this->out; + } + /** * Delegate output methods to the outputter attribute. * From 12921d6b71377fcfada0bf6ccd3d81112dd17fa4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 7 Mar 2012 16:06:50 -0600 Subject: [PATCH 132/134] accessor for NoticeListItem's Notice --- lib/noticelistitem.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index a8506aa46e..ef7fc0d1e6 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -720,4 +720,17 @@ class NoticeListItem extends Widget Event::handle('EndCloseNoticeListItemElement', array($this)); } } + + /** + * Get the notice in question + * + * For hooks, etc., this may be useful + * + * @return Notice The notice we're showing + */ + + function getNotice() + { + return $this->notice; + } } From dd862de6fbfddf0e585fbe9e3993a79fd939da22 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 8 Mar 2012 06:14:03 -0600 Subject: [PATCH 133/134] mismatched \n in locale/es --- locale/es/LC_MESSAGES/statusnet.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 921f10d19f..cf776ce25e 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -255,9 +255,7 @@ msgstr "Línea de tiempo principal" #. TRANS: %s is the other user's name. #, php-format msgid "%s's home timeline" -msgstr "" -"\n" -"Línea temporal de %s" +msgstr "Línea temporal de %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. From a4bf33d6b5f40e1e6f7a16c698c840301d085ddf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 8 Mar 2012 06:15:27 -0600 Subject: [PATCH 134/134] mismatched \n --- locale/ja/LC_MESSAGES/statusnet.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 94c46a7dac..11d6625464 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -7984,7 +7984,7 @@ msgstr "" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "あなたの時間をありがとうございます。\n" -"%2$s" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.